1
0
mirror of synced 2024-11-22 21:16:10 +03:00

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:
gladmon 2012-09-19 18:27:18 -03:00
parent a145378848
commit b96ee3fc88

View File

@ -165,8 +165,9 @@ Version: @@ver@@ Timestamp: @@timestamp@@
.select2-search {
display: inline-block;
white-space: nowrap;
z-index: 10000;
white-space: nowrap;
z-index: 10000;
position: relative;
min-height: 26px;
width: 100%;
margin: 0;