mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Slider: Explicitly apply opacity filter to disabled handles. Fixed #6727 - Slider: Visual issues with disabled slider in IE8
This commit is contained in:
parent
a217bd3b16
commit
421aeaa081
2
grunt.js
2
grunt.js
@ -299,8 +299,8 @@ grunt.initConfig({
|
|||||||
}),
|
}),
|
||||||
// TODO consider reenabling some of these rules
|
// TODO consider reenabling some of these rules
|
||||||
rules: {
|
rules: {
|
||||||
|
"adjoining-classes": false,
|
||||||
"import": false,
|
"import": false,
|
||||||
"important": false,
|
|
||||||
"outline-none": false,
|
"outline-none": false,
|
||||||
// especially this one
|
// especially this one
|
||||||
"overqualified-elements": false,
|
"overqualified-elements": false,
|
||||||
|
6
themes/base/jquery.ui.slider.css
vendored
6
themes/base/jquery.ui.slider.css
vendored
@ -28,6 +28,12 @@
|
|||||||
background-position: 0 0;
|
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 {
|
.ui-slider-horizontal {
|
||||||
height: .8em;
|
height: .8em;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user