Fix z-index on input text box for single selects.
Using the select2 control in a jquery dialog works fine except for you cannot click on the input box when doing a single select select box. The containing div was given a z-index, but not a position attribute, so the z-index was ignored.
This commit is contained in:
parent
a145378848
commit
b96ee3fc88
@ -165,8 +165,9 @@ Version: @@ver@@ Timestamp: @@timestamp@@
|
|||||||
|
|
||||||
.select2-search {
|
.select2-search {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
|
position: relative;
|
||||||
min-height: 26px;
|
min-height: 26px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user