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