##// END OF EJS Templates
Set a minimum height on the combobox button...
Jonathan Frederic -
Show More
@@ -1,129 +1,130 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 33 height: 5px !important;
34 34 overflow: visible !important;
35 35
36 36 border: 1px solid #CCCCCC;
37 37 background: #FFFFFF;
38 38 .corner-all();
39 39
40 40 .ui-slider {
41 41 border: 0px !important;
42 42 background: none !important;
43 43
44 44 .ui-slider-handle {
45 45 width: 14px !important;
46 46 height: 28px !important;
47 47
48 48 margin-top: -8px !important;
49 49 }
50 50 }
51 51 }
52 52
53 53 .widget-vslider {
54 54 border: 1px solid #CCCCCC;
55 55 background: #FFFFFF;
56 56 width: 5px;
57 57 margin-left: 12px;
58 58 padding-bottom: 14px;
59 59 .corner-all();
60 60 height: 250px;
61 61
62 62 .ui-slider {
63 63 border: 0px !important;
64 64 background: none !important;
65 65 margin-left: -4px;
66 66 margin-top: 5px;
67 67 height: 100%;
68 68
69 69 .ui-slider-handle {
70 70 width: 28px !important;
71 71 height: 14px !important;
72 72 margin-left: -9px;
73 73 }
74 74 }
75 75 }
76 76
77 77 .widget-text {
78 78 width: 350px;
79 79 margin-bottom: 0px;
80 80 }
81 81
82 82 .widget-numeric-text {
83 83 width: 150px;
84 84 }
85 85
86 86 .widget-progress {
87 87 width: 363px;
88 88
89 89 /* Disable progress bar animation */
90 90 .bar {
91 91 -webkit-transition: none;
92 92 -moz-transition: none;
93 93 -ms-transition: none;
94 94 -o-transition: none;
95 95 transition: none;
96 96 }
97 97 }
98 98
99 99 .widget-combo-btn {
100 100 min-width: 138px; /* + 26px drop arrow btn = 164px */
101 min-height: 1ex;
101 102 }
102 103
103 104 .widget-container {
104 105 .border-box-sizing();
105 106 }
106 107
107 108 .widget-box {
108 109 .start();
109 110 .widget-container();
110 111 margin: 5px;
111 112 }
112 113
113 114 .widget-hbox {
114 115 .widget-box();
115 116 .hbox();
116 117 }
117 118
118 119 .widget-hbox-single {
119 120 .widget-hbox();
120 121 height: 30px;
121 122 }
122 123
123 124 .widget-vbox-single {
124 125 .widget-box();
125 126 .vbox();
126 127 width: 30px;
127 128 }
128 129 }
129 130 }
General Comments 0
You need to be logged in to leave comments. Login now