Skip to content
This repository was archived by the owner on Jan 24, 2024. It is now read-only.

Commit aa30de8

Browse files
committed
Remove prefixes and update gradient syntax in css
1 parent c852067 commit aa30de8

File tree

1 file changed

+1
-24
lines changed

1 file changed

+1
-24
lines changed

multiple-select.css

+1-24
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
line-height: 26px;
2323
color: #444;
2424
text-decoration: none;
25-
-webkit-border-radius: 4px;
26-
-moz-border-radius: 4px;
2725
border-radius: 4px;
2826
background-color: #fff;
2927
}
@@ -75,22 +73,16 @@
7573
background: #fff;
7674
color: #000;
7775
border: 1px solid #aaa;
78-
-webkit-border-radius: 4px;
79-
-moz-border-radius: 4px;
8076
border-radius: 4px;
8177
}
8278

8379
.ms-drop.bottom {
8480
top: 100%;
85-
-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
86-
-moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
8781
box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
8882
}
8983

9084
.ms-drop.top {
9185
bottom: 100%;
92-
-webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
93-
-moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
9486
box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
9587
}
9688

@@ -115,26 +107,12 @@
115107
font-family: sans-serif;
116108
font-size: 1em;
117109
border: 1px solid #aaa;
118-
-webkit-border-radius: 0;
119-
-moz-border-radius: 0;
120110
border-radius: 0;
121-
-webkit-box-shadow: none;
122-
-moz-box-shadow: none;
123111
box-shadow: none;
124-
background: #fff url('multiple-select.png') no-repeat 100% -22px;
125-
background: url('multiple-select.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
126-
background: url('multiple-select.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
127-
background: url('multiple-select.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
128-
background: url('multiple-select.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
129-
background: url('multiple-select.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
130-
background: url('multiple-select.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
112+
background: url('multiple-select.png') no-repeat 100% -22px, linear-gradient(to top, #ffffff 85%, #eeeeee 99%);
131113
}
132114

133115
.ms-search, .ms-filter {
134-
-webkit-box-sizing: border-box;
135-
-khtml-box-sizing: border-box;
136-
-moz-box-sizing: border-box;
137-
-ms-box-sizing: border-box;
138116
box-sizing: border-box;
139117
}
140118

@@ -154,7 +132,6 @@
154132

155133
.ms-drop ul > li .disabled {
156134
opacity: .35;
157-
filter: Alpha(Opacity=35);
158135
}
159136

160137
.ms-drop ul > li.multiple {

0 commit comments

Comments
 (0)