Skip to content

Commit

Permalink
Slider: Explicitly apply opacity filter to disabled handles. Fixed #6…
Browse files Browse the repository at this point in the history
…727 - Slider: Visual issues with disabled slider in IE8
  • Loading branch information
tjvantoll authored and mikesherov committed Nov 23, 2012
1 parent a217bd3 commit 421aeaa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion grunt.js
Expand Up @@ -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,
Expand Down
6 changes: 6 additions & 0 deletions themes/base/jquery.ui.slider.css
Expand Up @@ -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;
}
Expand Down

0 comments on commit 421aeaa

Please sign in to comment.