Slider: Explicitly apply opacity filter to disabled handles. Fixed #6727 - Slider: Visual issues with disabled slider in IE8

This commit is contained in:
TJ VanToll 2012-11-22 22:43:18 -05:00 committed by Mike Sherov
parent a217bd3b16
commit 421aeaa081
2 changed files with 7 additions and 1 deletions

View File

@ -299,8 +299,8 @@ grunt.initConfig({
}),
// TODO consider reenabling some of these rules
rules: {
"adjoining-classes": false,
"import": false,
"important": false,
"outline-none": false,
// especially this one
"overqualified-elements": false,

View File

@ -28,6 +28,12 @@
background-position: 0 0;
}
/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
filter: inherit;
}
.ui-slider-horizontal {
height: .8em;
}