aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2011-04-09 15:54:17 -0400
committerRichard Worth <rdworth@gmail.com>2011-04-09 15:56:41 -0400
commit371f1a4ffd7533aa97353ca04ec7ca27b588c8ae (patch)
tree93ea10277c79d4bcf18eccdc8aad01c5591ed5c8
parent9412777c4b5877888b42eb50eae8e80337e5c900 (diff)
downloadjquery-ui-371f1a4ffd7533aa97353ca04ec7ca27b588c8ae.tar.gz
jquery-ui-371f1a4ffd7533aa97353ca04ec7ca27b588c8ae.zip
Resizable: Added a non-visible yet non-transparent (apparently) no-request background-image on resizable handles to work around an IE bug. Fixed #7233 - Resizable: resizable handles fail to work in IE if transparent and content overlaps
(cherry picked from commit 64f13b661a571806bdfb181d1ef511ac9e2771b3)
-rw-r--r--themes/base/jquery.ui.resizable.css7
1 files changed, 6 insertions, 1 deletions
diff --git a/themes/base/jquery.ui.resizable.css b/themes/base/jquery.ui.resizable.css
index eeb547b9f..6a258d702 100644
--- a/themes/base/jquery.ui.resizable.css
+++ b/themes/base/jquery.ui.resizable.css
@@ -8,7 +8,12 @@
* 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;z-index: 99999; display: block;
+ /* http://bugs.jqueryui.com/ticket/7233
+ - Resizable: resizable handles fail to work in IE if transparent and content overlaps
+ */
+ background-image:url(about:blank);
+}
.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; }