Skip to content

Commit 421aeaa

Browse files
tjvantollmikesherov
authored andcommitted
Slider: Explicitly apply opacity filter to disabled handles. Fixed #6727 - Slider: Visual issues with disabled slider in IE8
1 parent a217bd3 commit 421aeaa

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

grunt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,8 +299,8 @@ grunt.initConfig({
299299
}),
300300
// TODO consider reenabling some of these rules
301301
rules: {
302+
"adjoining-classes": false,
302303
"import": false,
303-
"important": false,
304304
"outline-none": false,
305305
// especially this one
306306
"overqualified-elements": false,

themes/base/jquery.ui.slider.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@
2828
background-position: 0 0;
2929
}
3030

31+
/* For IE8 - See #6727 */
32+
.ui-slider.ui-state-disabled .ui-slider-handle,
33+
.ui-slider.ui-state-disabled .ui-slider-range {
34+
filter: inherit;
35+
}
36+
3137
.ui-slider-horizontal {
3238
height: .8em;
3339
}

0 commit comments

Comments
 (0)