aboutsummaryrefslogtreecommitdiffstats
path: root/themes/base
diff options
context:
space:
mode:
authorMaggie Costello Wachs <fg.maggie@gmail.com>2008-12-11 17:46:29 +0000
committerMaggie Costello Wachs <fg.maggie@gmail.com>2008-12-11 17:46:29 +0000
commit4c83fcc777ff52534459aea214a63797e0141391 (patch)
tree1524df5c5356c63ff5aebbf2d6080cf8c05bad5f /themes/base
parenta7dae90eff7c96c052e557befc1e56667f9ab331 (diff)
downloadjquery-ui-4c83fcc777ff52534459aea214a63797e0141391.tar.gz
jquery-ui-4c83fcc777ff52534459aea214a63797e0141391.zip
updated #3650: noted that inline position style should be removed from range element (ui-slider-range)
ui.slider.css - added position style, fixed range display issues for IE6 ui.core.css - fixed clearfix class to work in IE7, Opera
Diffstat (limited to 'themes/base')
-rw-r--r--themes/base/ui.core.css10
-rw-r--r--themes/base/ui.slider.css7
2 files changed, 12 insertions, 5 deletions
diff --git a/themes/base/ui.core.css b/themes/base/ui.core.css
index 74721eb2e..778814574 100644
--- a/themes/base/ui.core.css
+++ b/themes/base/ui.core.css
@@ -9,7 +9,13 @@
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
+
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
-.ui-helper-clearfix { display: inline-block; display: block; }
-* html .ui-helper-clearfix { height: 1%; }
+.ui-helper-clearfix { display: inline-block; }
+
+/* DO NOT REMOVE THIS COMMENT - required for clearfix to work in Opera \*/
+* html .ui-helper-clearfix { height:1%; }
+.ui-helper-clearfix { display:block; }
+/* end required block */
+
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } \ No newline at end of file
diff --git a/themes/base/ui.slider.css b/themes/base/ui.slider.css
index 8c642731e..4f434bd3e 100644
--- a/themes/base/ui.slider.css
+++ b/themes/base/ui.slider.css
@@ -1,8 +1,9 @@
/* Slider
----------------------------------*/
.ui-slider { height: .8em; position: relative; }
-.ui-slider-handle { position: absolute;z-index: 2;top: -.3em;width: 1.2em;height: 1.2em; }
-.ui-slider-range { height: .8em;position: absolute;border-left: 0;border-right: 0;top: -1px;z-index: 1;opacity:.7;filter:Alpha(Opacity=70); }
+.ui-slider-handle { position: absolute; z-index: 2; top: -.3em; width: 1.2em; height: 1.2em; }
+.ui-slider-range { position: relative; z-index: 1; top: 0; height: 100%; font-size:1%; display:block; border:0; opacity:.7; filter:Alpha(Opacity=70); }
+
.ui-slider-vertical { height: auto; width: .8em; }
.ui-slider-vertical .ui-slider-handle { top: auto; left: -.3em; }
-.ui-slider-vertical .ui-slider-range { height: auto; width: .8em; border-left: 1px; border-right: 1px; border-top: 0; border-bottom: 0; top: auto; left: 0; } \ No newline at end of file
+.ui-slider-vertical .ui-slider-range { top: auto; left: 0; height: auto; width:100%; } \ No newline at end of file