mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Selectable: moved position absolute and z-index to css. Fixed #4475 - Selectable helper has z-index hard coded
This commit is contained in:
parent
202ddd0c58
commit
a90e195489
2
themes/base/jquery.ui.selectable.css
vendored
2
themes/base/jquery.ui.selectable.css
vendored
@ -1,3 +1,3 @@
|
||||
/* Selectable
|
||||
----------------------------------*/
|
||||
.ui-selectable-helper { border:1px dotted black }
|
||||
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
|
||||
|
2
ui/jquery.ui.selectable.js
vendored
2
ui/jquery.ui.selectable.js
vendored
@ -90,8 +90,6 @@ $.widget("ui.selectable", $.ui.mouse, {
|
||||
$(options.appendTo).append(this.helper);
|
||||
// position helper (lasso)
|
||||
this.helper.css({
|
||||
"z-index": 100,
|
||||
"position": "absolute",
|
||||
"left": event.clientX,
|
||||
"top": event.clientY,
|
||||
"width": 0,
|
||||
|
Loading…
Reference in New Issue
Block a user