Skip to content

Commit

Permalink
Resizable: Added a non-visible yet non-transparent (apparently) no-re…
Browse files Browse the repository at this point in the history
…quest 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 64f13b6)
  • Loading branch information
rdworth committed Apr 9, 2011
1 parent 9412777 commit 371f1a4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion themes/base/jquery.ui.resizable.css
Expand Up @@ -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; }
Expand Down

0 comments on commit 371f1a4

Please sign in to comment.