diff options
author | Anika Henke <anika@selfthinker.org> | 2012-11-20 00:29:01 +0000 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2012-11-19 21:31:28 -0500 |
commit | 010e09fa62b7e71fdfaaf6b0d4e974be0704a1c8 (patch) | |
tree | 40d0556c30725e5ed1856333bde3cb6da55c224f /themes/base/jquery.ui.core.css | |
parent | d5afdba4cb4e00fcd40e22beefd059464f75998b (diff) | |
download | jquery-ui-010e09fa62b7e71fdfaaf6b0d4e974be0704a1c8.tar.gz jquery-ui-010e09fa62b7e71fdfaaf6b0d4e974be0704a1c8.zip |
CSS: Reformatted CSS to use better coding standard
Diffstat (limited to 'themes/base/jquery.ui.core.css')
-rw-r--r-- | themes/base/jquery.ui.core.css | 73 |
1 files changed, 62 insertions, 11 deletions
diff --git a/themes/base/jquery.ui.core.css b/themes/base/jquery.ui.core.css index 5bfe620b9..c68808065 100644 --- a/themes/base/jquery.ui.core.css +++ b/themes/base/jquery.ui.core.css @@ -11,31 +11,82 @@ /* Layout helpers ----------------------------------*/ -.ui-helper-hidden { display: none; } -.ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } -.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:before, .ui-helper-clearfix:after { content: ""; display: table; } -.ui-helper-clearfix:after { clear: both; } -.ui-helper-clearfix { zoom: 1; } -.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } +.ui-helper-hidden { + display: none; +} +.ui-helper-hidden-accessible { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} +.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:before, +.ui-helper-clearfix:after { + content: ""; + display: table; +} +.ui-helper-clearfix:after { + clear: both; +} +.ui-helper-clearfix { + zoom: 1; +} +.ui-helper-zfix { + width: 100%; + height: 100%; + top: 0; + left: 0; + position: absolute; + opacity: 0; + filter:Alpha(Opacity=0); +} -.ui-front { z-index: 100; } +.ui-front { + z-index: 100; +} /* Interaction Cues ----------------------------------*/ -.ui-state-disabled { cursor: default !important; } +.ui-state-disabled { + cursor: default !important; +} /* Icons ----------------------------------*/ /* states and images */ -.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } +.ui-icon { + display: block; + text-indent: -99999px; + overflow: hidden; + background-repeat: no-repeat; +} /* Misc visuals ----------------------------------*/ /* Overlays */ -.ui-widget-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; } +.ui-widget-overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; +} |