Skip to content

Commit 64f13b6

Browse files
committed
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
1 parent 7272f3b commit 64f13b6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

themes/base/jquery.ui.resizable.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88
* http://docs.jquery.com/UI/Resizable#theming
99
*/
1010
.ui-resizable { position: relative;}
11-
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
11+
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;
12+
/* http://bugs.jqueryui.com/ticket/7233
13+
- Resizable: resizable handles fail to work in IE if transparent and content overlaps
14+
*/
15+
background-image:url(about:blank);
16+
}
1217
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
1318
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
1419
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }

0 commit comments

Comments
 (0)