Show More
@@ -1,129 +1,147 b'' | |||
|
1 | 1 | |
|
2 | 2 | .widget-area { |
|
3 | 3 | page-break-inside: avoid; |
|
4 | 4 | .hbox(); |
|
5 | 5 | |
|
6 | 6 | .widget-subarea { |
|
7 | 7 | padding: 0.44em 0.4em 0.4em 1px; |
|
8 | 8 | margin-left: 6px; |
|
9 | 9 | .border-box-sizing(); |
|
10 | 10 | .vbox(); |
|
11 | 11 | .box-flex2(); |
|
12 | 12 | |
|
13 | 13 | .widget-hlabel { |
|
14 | 14 | min-width: 10ex; |
|
15 | 15 | padding-right: 8px; |
|
16 | 16 | text-align: right; |
|
17 | 17 | vertical-align: text-top; |
|
18 | 18 | padding-top: 3px; |
|
19 | 19 | } |
|
20 | 20 | |
|
21 | 21 | .widget-vlabel { |
|
22 | 22 | text-align: center; |
|
23 | 23 | vertical-align: text-bottom; |
|
24 | 24 | padding-bottom: 5px; |
|
25 | 25 | } |
|
26 | 26 | |
|
27 | 27 | .widget-hslider { |
|
28 | 28 | padding-left: 8px; |
|
29 | 29 | padding-right: 5px; |
|
30 | 30 | margin-top: 11px; |
|
31 | 31 | |
|
32 | 32 | width: 348px; |
|
33 |
height: 5px |
|
|
34 | overflow: visible !important; | |
|
33 | height: 5px; | |
|
34 | max-height: 5px; | |
|
35 | overflow: visible; | |
|
35 | 36 | |
|
36 | 37 | border: 1px solid #CCCCCC; |
|
37 | 38 | background: #FFFFFF; |
|
38 | 39 | .corner-all(); |
|
39 | 40 | |
|
41 | display: -moz-box; | |
|
42 | display: -webkit-box; | |
|
43 | ||
|
40 | 44 | .ui-slider { |
|
41 | 45 | border: 0px !important; |
|
42 | 46 | background: none !important; |
|
47 | ||
|
48 | display: -moz-box; | |
|
49 | display: -webkit-box; | |
|
50 | -moz-box-flex: 1; /* Mozilla */ | |
|
51 | -webkit-box-flex: 1; /* WebKit */ | |
|
43 | 52 | |
|
44 | 53 | .ui-slider-handle { |
|
45 | 54 | width: 14px !important; |
|
46 | 55 | height: 28px !important; |
|
47 | 56 | |
|
48 | 57 | margin-top: -8px !important; |
|
49 | 58 | } |
|
50 | 59 | } |
|
51 | 60 | } |
|
52 | 61 | |
|
53 | 62 | .widget-vslider { |
|
54 | 63 | border: 1px solid #CCCCCC; |
|
55 | 64 | background: #FFFFFF; |
|
56 | 65 | width: 5px; |
|
66 | max-width: 5px; | |
|
57 | 67 | margin-left: 12px; |
|
58 | padding-bottom: 14px; | |
|
68 | ||
|
69 | padding-bottom: 8px; | |
|
70 | .vbox(); | |
|
59 | 71 | .corner-all(); |
|
72 | ||
|
60 | 73 | height: 250px; |
|
61 | 74 | |
|
62 | 75 | .ui-slider { |
|
63 | 76 | border: 0px !important; |
|
64 | 77 | background: none !important; |
|
65 | 78 | margin-left: -4px; |
|
66 | 79 | margin-top: 5px; |
|
67 |
|
|
|
80 | ||
|
81 | .vbox(); | |
|
82 | .box-flex1(); | |
|
83 | ||
|
84 | /* height: 100%; | |
|
85 | min-height: 100%; */ | |
|
68 | 86 | |
|
69 | 87 | .ui-slider-handle { |
|
70 | 88 | width: 28px !important; |
|
71 | 89 | height: 14px !important; |
|
72 | 90 | margin-left: -9px; |
|
73 | 91 | } |
|
74 | 92 | } |
|
75 | 93 | } |
|
76 | 94 | |
|
77 | 95 | .widget-text { |
|
78 | 96 | width: 350px; |
|
79 | 97 | margin-bottom: 0px; |
|
80 | 98 | } |
|
81 | 99 | |
|
82 | 100 | .widget-numeric-text { |
|
83 | 101 | width: 150px; |
|
84 | 102 | } |
|
85 | 103 | |
|
86 | 104 | .widget-progress { |
|
87 | 105 | width: 363px; |
|
88 | 106 | |
|
89 | 107 | /* Disable progress bar animation */ |
|
90 | 108 | .bar { |
|
91 | 109 | -webkit-transition: none; |
|
92 | 110 | -moz-transition: none; |
|
93 | 111 | -ms-transition: none; |
|
94 | 112 | -o-transition: none; |
|
95 | 113 | transition: none; |
|
96 | 114 | } |
|
97 | 115 | } |
|
98 | 116 | |
|
99 | 117 | .widget-combo-btn { |
|
100 | 118 | min-width: 138px; /* + 26px drop arrow btn = 164px */ |
|
101 | 119 | } |
|
102 | 120 | |
|
103 | 121 | .widget-container { |
|
104 | 122 | .border-box-sizing(); |
|
105 | 123 | } |
|
106 | 124 | |
|
107 | 125 | .widget-box { |
|
108 | 126 | .start(); |
|
109 | 127 | .widget-container(); |
|
110 | 128 | margin: 5px; |
|
111 | 129 | } |
|
112 | 130 | |
|
113 | 131 | .widget-hbox { |
|
114 | 132 | .widget-box(); |
|
115 | 133 | .hbox(); |
|
116 | 134 | } |
|
117 | 135 | |
|
118 | 136 | .widget-hbox-single { |
|
119 | 137 | .widget-hbox(); |
|
120 | 138 | height: 30px; |
|
121 | 139 | } |
|
122 | 140 | |
|
123 | 141 | .widget-vbox-single { |
|
124 | 142 | .widget-box(); |
|
125 | 143 | .vbox(); |
|
126 | 144 | width: 30px; |
|
127 | 145 | } |
|
128 | 146 | } |
|
129 | 147 | } |
General Comments 0
You need to be logged in to leave comments.
Login now