]> source.dussan.org Git - jquery-ui.git/commitdiff
Resizable: Apply zIndex option to all handles. Partial Fix for #7960- Modal dialog...
authorTJ VanToll <tj.vantoll@gmail.com>
Tue, 10 Jan 2012 02:42:56 +0000 (21:42 -0500)
committerScott González <scott.gonzalez@gmail.com>
Fri, 20 Apr 2012 00:55:02 +0000 (20:55 -0400)
tests/unit/resizable/resizable_options.js
themes/base/jquery.ui.resizable.css
ui/jquery.ui.resizable.js

index 76cca560a59b4f057b088bd83eaa2a755b6f28e5..275639ca1dfb97bd218e45973db4c53ecca8ed91 100644 (file)
@@ -187,4 +187,13 @@ test("ui-resizable-nw { handles: 'all', minWidth: 60, minHeight: 60, maxWidth: 1
        equal( target.height(), 100, "compare maxHeight" );
 });
 
+test("zIndex, applied to all handles", function() {
+       expect(8);
+       
+       var target = $('<div></div>').resizable({ handles: 'all', zIndex: 100 });
+       target.children( '.ui-resizable-handle' ).each( function( index, handle ) {
+               equals( $( handle ).css( 'zIndex' ), 100, 'compare zIndex' );
+       });
+});
+
 })(jQuery);
index 0bf680482ff8d3002854a93a69306a6c6c038950..0bb688d5b531c2d887a94bfe5413a4fb31d03e7f 100644 (file)
@@ -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; }
index 9be33927eead69935ac02baded7f0d75eac818a0..c00602cc8c3af3e762abd76e40e96da8f16e13c2 100644 (file)
@@ -99,9 +99,8 @@ $.widget("ui.resizable", $.ui.mouse, {
                                var handle = $.trim(n[i]), hname = 'ui-resizable-'+handle;
                                var axis = $('<div class="ui-resizable-handle ' + hname + '"></div>');
 
-                               // increase zIndex of sw, se, ne, nw axis
-                               //TODO : this modifies original option
-                               if(/sw|se|ne|nw/.test(handle)) axis.css({ zIndex: ++o.zIndex });
+                               // Apply zIndex to all handles - see #7960
+                               axis.css({ zIndex: o.zIndex });
 
                                //TODO : What's going on here?
                                if ('se' == handle) {