diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/ui.core.css | 10 | ||||
-rw-r--r-- | themes/base/ui.slider.css | 7 |
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 |