Skip to content

Commit a3de45b

Browse files
committed
Fixes bug where inline comboboxes did not work with bootstrap 3.0 styling.
1 parent bc7846b commit a3de45b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

css/bootstrap-combobox.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
margin-bottom: 0;
55
vertical-align: top;
66
}
7+
.form-search .combobox-container .input-group-addon,
8+
.form-inline .combobox-container .input-group-addon {
9+
width: auto;
10+
}
711
.combobox-selected .caret {
812
display: none;
913
}

less/combobox.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
display: inline-block;
55
margin-bottom: 0;
66
vertical-align: top;
7+
.input-group-addon{
8+
width: auto;
9+
}
710
}
811
}
912

0 commit comments

Comments
 (0)