1
0
mirror of synced 2024-11-25 22:36:03 +03:00

Bugfix: Avoid implosion of empty <option>s

When using select2 on

<select>
  <option value="empty"></option>
  <option>Val 1</option>
  <option>Val 2</option>
</select>

The top option will not have the correct height.
This commit is contained in:
Jens Rantil 2013-03-15 11:15:03 +01:00
parent b826b7f5e3
commit eac267b11f

View File

@ -339,6 +339,8 @@ Version: @@ver@@ Timestamp: @@timestamp@@
margin: 0;
cursor: pointer;
min-height: 1em;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;