diff options
author | TJ VanToll <tj.vantoll@gmail.com> | 2012-01-09 21:42:56 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-04-19 20:55:02 -0400 |
commit | 6150abae49f77a3b2f67c39a3c60a06792b4de8f (patch) | |
tree | 8c70f73c4bc01ed73f54ffbb365672152663ee2f /themes | |
parent | d783766f9053a2075c579296d819f0941796ac1c (diff) | |
download | jquery-ui-6150abae49f77a3b2f67c39a3c60a06792b4de8f.tar.gz jquery-ui-6150abae49f77a3b2f67c39a3c60a06792b4de8f.zip |
Resizable: Apply zIndex option to all handles. Partial Fix for #7960- Modal dialog does not disable resizables on the page.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/jquery.ui.resizable.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/base/jquery.ui.resizable.css b/themes/base/jquery.ui.resizable.css index 0bf680482..0bb688d5b 100644 --- a/themes/base/jquery.ui.resizable.css +++ b/themes/base/jquery.ui.resizable.css @@ -8,7 +8,7 @@ * http://docs.jquery.com/UI/Resizable#theming */ .ui-resizable { position: relative;} -.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; } +.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; } |