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.resizable.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.resizable.css')
-rw-r--r-- | themes/base/jquery.ui.resizable.css | 79 |
1 files changed, 68 insertions, 11 deletions
diff --git a/themes/base/jquery.ui.resizable.css b/themes/base/jquery.ui.resizable.css index 291bdb209..89d12ef2f 100644 --- a/themes/base/jquery.ui.resizable.css +++ b/themes/base/jquery.ui.resizable.css @@ -8,14 +8,71 @@ * * http://docs.jquery.com/UI/Resizable#theming */ -.ui-resizable { position: relative;} -.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } -.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } -.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } -.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } -.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } -.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } -.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } -.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } -.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } -.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
\ No newline at end of file +.ui-resizable { + position: relative; +} +.ui-resizable-handle { + position: absolute; + font-size: 0.1px; + display: block; +} +.ui-resizable-disabled .ui-resizable-handle, +.ui-resizable-autohide .ui-resizable-handle { + display: none; +} +.ui-resizable-n { + cursor: n-resize; + height: 7px; + width: 100%; + top: -5px; + left: 0; +} +.ui-resizable-s { + cursor: s-resize; + height: 7px; + width: 100%; + bottom: -5px; + left: 0; +} +.ui-resizable-e { + cursor: e-resize; + width: 7px; + right: -5px; + top: 0; + height: 100%; +} +.ui-resizable-w { + cursor: w-resize; + width: 7px; + left: -5px; + top: 0; + height: 100%; +} +.ui-resizable-se { + cursor: se-resize; + width: 12px; + height: 12px; + right: 1px; + bottom: 1px; +} +.ui-resizable-sw { + cursor: sw-resize; + width: 9px; + height: 9px; + left: -5px; + bottom: -5px; +} +.ui-resizable-nw { + cursor: nw-resize; + width: 9px; + height: 9px; + left: -5px; + top: -5px; +} +.ui-resizable-ne { + cursor: ne-resize; + width: 9px; + height: 9px; + right: -5px; + top: -5px; +} |