Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Resizable handle z-index

I noticed that the jQuery UI's resizable handles are on top of all other elements in the page. I checked using Chrome's developer tools and saw that they are automatically given a z-index of 1001. Is there a way to disable this and just give them the same z-index as the resizable element? Thanks.

like image 600
SZH Avatar asked Jan 12 '11 19:01

SZH


1 Answers

Works best for me, cause without !important the rule gets overwritten.

.ui-resizable-handle { z-index: auto !important; }
like image 187
Sven Avatar answered Oct 10 '22 16:10

Sven