File tree Expand file tree Collapse file tree 6 files changed +101
-7
lines changed Expand file tree Collapse file tree 6 files changed +101
-7
lines changed Original file line number Diff line number Diff line change @@ -1145,7 +1145,8 @@ input.ui-button.ui-icon-notext .ui-icon {
1145
1145
}
1146
1146
1147
1147
[dir = "rtl" ] .ui-datepicker-prev span {
1148
- background-position : -48px -192px ;
1148
+ -webkit-transform : rotate (180deg );
1149
+ transform : rotate (180deg );
1149
1150
}
1150
1151
1151
1152
[dir = "rtl" ] .ui-datepicker-next {
@@ -1154,7 +1155,8 @@ input.ui-button.ui-icon-notext .ui-icon {
1154
1155
}
1155
1156
1156
1157
[dir = "rtl" ] .ui-datepicker-next span {
1157
- background-position : -80px -192px ;
1158
+ -webkit-transform : rotate (180deg );
1159
+ transform : rotate (180deg );
1158
1160
}
1159
1161
1160
1162
[dir = "rtl" ] .ui-datepicker-buttonpane {
@@ -1681,7 +1683,6 @@ input.ui-button.ui-icon-notext .ui-icon {
1681
1683
display : block;
1682
1684
position : absolute;
1683
1685
border : 0 ;
1684
- background-position : 0 0 ;
1685
1686
font-size : 0.7em ;
1686
1687
z-index : 1 ;
1687
1688
}
@@ -1855,6 +1856,7 @@ input.ui-button.ui-icon-notext .ui-icon {
1855
1856
}
1856
1857
1857
1858
.ui-tabs .ui-tabs-nav {
1859
+ padding : 0 ;
1858
1860
background : none;
1859
1861
}
1860
1862
Original file line number Diff line number Diff line change 275
275
left : auto ;
276
276
277
277
span {
278
- background-position : -48 px -192 px ;
278
+ transform : rotate ( 180 deg ) ;
279
279
}
280
280
}
281
281
284
284
left : 0.2em ;
285
285
286
286
span {
287
- background-position : -80 px -192 px ;
287
+ transform : rotate ( 180 deg ) ;
288
288
}
289
289
}
290
290
Original file line number Diff line number Diff line change
1
+ /* Multi-select menu
2
+ ========================================================================== */
3
+
4
+ /* *
5
+ * jQuery UI MultiSelect Widget (a jQuery UI plugin)
6
+ *
7
+ * Some classes and HTML elements generally added via JavaScript, more info -
8
+ * https://github.com/ehynds/jquery-ui-multiselect-widget
9
+ *
10
+ * Example HTML:
11
+ *
12
+ * TODO
13
+ */
14
+
15
+ .ui-multiselect {
16
+ padding : 2px 0 2px 4px ;
17
+ text-align : left ;
18
+
19
+ span .ui-icon {
20
+ float : right ;
21
+ }
22
+
23
+ }
24
+
25
+ .ui-multiselect-single .ui-multiselect-checkboxes {
26
+ input {
27
+ position : absolute !important ;
28
+ top : auto !important ;
29
+ left : -9999px ;
30
+ }
31
+
32
+ label {
33
+ padding : 5px !important ;
34
+ }
35
+ }
36
+
37
+ .ui-multiselect-menu {
38
+ display : none ;
39
+ position : absolute ;
40
+ padding : 3px ;
41
+ text-align : left ;
42
+ }
43
+
44
+ .ui-multiselect-checkboxes {
45
+ position : relative ;
46
+ overflow-y : auto ;
47
+
48
+ label {
49
+ display : block ;
50
+ padding : 3px 1px ;
51
+ border : 1px solid transparent ;
52
+ cursor : default ;
53
+
54
+ input {
55
+ position : relative ;
56
+ top : 1px ;
57
+ }
58
+
59
+ img {
60
+ height : 30px ;
61
+ padding-right : 3px ;
62
+ vertical-align : middle ;
63
+ }
64
+ }
65
+ }
66
+
67
+ .ui-multiselect-checkboxes li {
68
+ padding-right : 3px ;
69
+ clear : both ;
70
+ font-size : 0.9em ;
71
+ list-style : none ;
72
+ }
73
+
74
+ .ui-multiselect-checkboxes .ui-multiselect-optgroup {
75
+ padding : 3px ;
76
+ }
77
+
78
+ .ui-multiselect-columns {
79
+ display : inline-block ;
80
+ vertical-align : top ;
81
+ }
82
+
83
+ .ui-multiselect-checkboxes .ui-multiselect-optgroup a {
84
+ display : block ;
85
+ margin : 1px 0 ;
86
+ padding : 3px ;
87
+ border-bottom : 1px solid ;
88
+ font-weight : bold ;
89
+ text-align : center ;
90
+ text-decoration : none ;
91
+ cursor : pointer ;
92
+ }
Original file line number Diff line number Diff line change 38
38
display : block ;
39
39
position : absolute ;
40
40
border : 0 ;
41
- background-position : 0 0 ;
42
41
font-size : 0.7em ;
43
42
z-index : 1 ;
44
43
}
Original file line number Diff line number Diff line change 37
37
border : 0 ;
38
38
39
39
.ui-tabs-nav {
40
+ padding : 0 ;
40
41
background : none ;
41
42
42
43
& :not (.switcher-list ) .ui-tabs-anchor {
You can’t perform that action at this time.
0 commit comments