Skip to content

Commit 178851a

Browse files
committed
A couple of glitch fixes
1 parent cc154de commit 178851a

File tree

6 files changed

+101
-7
lines changed

6 files changed

+101
-7
lines changed

dist/textpattern/jquery-ui.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,8 @@ input.ui-button.ui-icon-notext .ui-icon {
11451145
}
11461146

11471147
[dir="rtl"] .ui-datepicker-prev span {
1148-
background-position: -48px -192px;
1148+
-webkit-transform: rotate(180deg);
1149+
transform: rotate(180deg);
11491150
}
11501151

11511152
[dir="rtl"] .ui-datepicker-next {
@@ -1154,7 +1155,8 @@ input.ui-button.ui-icon-notext .ui-icon {
11541155
}
11551156

11561157
[dir="rtl"] .ui-datepicker-next span {
1157-
background-position: -80px -192px;
1158+
-webkit-transform: rotate(180deg);
1159+
transform: rotate(180deg);
11581160
}
11591161

11601162
[dir="rtl"] .ui-datepicker-buttonpane {
@@ -1681,7 +1683,6 @@ input.ui-button.ui-icon-notext .ui-icon {
16811683
display: block;
16821684
position: absolute;
16831685
border: 0;
1684-
background-position: 0 0;
16851686
font-size: 0.7em;
16861687
z-index: 1;
16871688
}
@@ -1855,6 +1856,7 @@ input.ui-button.ui-icon-notext .ui-icon {
18551856
}
18561857

18571858
.ui-tabs .ui-tabs-nav {
1859+
padding: 0;
18581860
background: none;
18591861
}
18601862

dist/textpattern/jquery-ui.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scss/modules/_datepicker.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@
275275
left: auto;
276276

277277
span {
278-
background-position: -48px -192px;
278+
transform: rotate(180deg);
279279
}
280280
}
281281

@@ -284,7 +284,7 @@
284284
left: 0.2em;
285285

286286
span {
287-
background-position: -80px -192px;
287+
transform: rotate(180deg);
288288
}
289289
}
290290

scss/modules/_multiselect-menu.scss

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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+
}

scss/modules/_slider.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
display: block;
3939
position: absolute;
4040
border: 0;
41-
background-position: 0 0;
4241
font-size: 0.7em;
4342
z-index: 1;
4443
}

scss/modules/_tabs.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
border: 0;
3838

3939
.ui-tabs-nav {
40+
padding: 0;
4041
background: none;
4142

4243
&:not(.switcher-list) .ui-tabs-anchor {

0 commit comments

Comments
 (0)