Skip to content

Commit 59fb813

Browse files
committed
Fixed issue where controls with options inside and outside of optgroups didn't work (patched by Bastlynn)
1 parent 4faca16 commit 59fb813

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

jquery.selectBox.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Dropdown control */
22
.selectBox-dropdown {
3-
min-width: 75px;
3+
min-width: 150px;
44
position: relative;
55
border: solid 1px #BBB;
66
line-height: 1.5;
@@ -59,6 +59,7 @@
5959
position: absolute;
6060
z-index: 99999;
6161
max-height: 200px;
62+
min-height: 1em;
6263
border: solid 1px #BBB; /* should be the same border width as .selectBox-dropdown */
6364
background: #FFF;
6465
-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
@@ -70,7 +71,7 @@
7071

7172
/* Inline control */
7273
.selectBox-inline {
73-
min-width: 75px;
74+
min-width: 150px;
7475
outline: none;
7576
border: solid 1px #BBB;
7677
background: #FFF;

0 commit comments

Comments
 (0)