diff options
author | Richard Worth <rdworth@gmail.com> | 2009-01-14 03:58:25 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-01-14 03:58:25 +0000 |
commit | d60803f637829a428d7316322c983cd96dea47ec (patch) | |
tree | 88776364108bbf52014a18eac34d49280eab60fe | |
parent | d422915b8e021ba1ee2445ce0a0d809e84a6ecd6 (diff) | |
download | jquery-ui-d60803f637829a428d7316322c983cd96dea47ec.tar.gz jquery-ui-d60803f637829a428d7316322c983cd96dea47ec.zip |
themes/base/ui.slider.css: fixed slider ranges in IE6
-rw-r--r-- | themes/base/ui.slider.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/base/ui.slider.css b/themes/base/ui.slider.css index 23a4fbc39..6b76d19a0 100644 --- a/themes/base/ui.slider.css +++ b/themes/base/ui.slider.css @@ -6,8 +6,8 @@ .ui-slider-horizontal { height: .8em; } .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } -.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } +.ui-slider-horizontal .ui-slider-range { position: relative; top: 0; height: 100%; } .ui-slider-vertical { width: .8em; height: 100%; } .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } -.ui-slider-vertical .ui-slider-range { left: 0; height: auto; width: 100%; }
\ No newline at end of file +.ui-slider-vertical .ui-slider-range { position: relative; left: 0; height: auto; width: 100%; }
\ No newline at end of file |