Commit b77ed4a3 authored by Mark Otto's avatar Mark Otto

fix dropdowns in button groups after font-size hack

parent 244a9ab7
......@@ -3119,12 +3119,16 @@ input[type="submit"].btn.btn-mini {
.btn-group > .btn {
position: relative;
margin-left: -1px;
font-size: 13px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.btn-group > .btn,
.btn-group > .dropdown-menu {
font-size: 13px;
}
.btn-group > .btn-mini,
.btn-group > .btn-small {
font-size: 11px;
......
......@@ -29,9 +29,12 @@
.btn-group > .btn {
position: relative;
margin-left: -1px;
font-size: @baseFontSize; // redeclare as part 2 of font-size inline-block hack
.border-radius(0);
}
.btn-group > .btn,
.btn-group > .dropdown-menu {
font-size: @baseFontSize; // redeclare as part 2 of font-size inline-block hack
}
// Reset fonts for other sizes
.btn-group > .btn-mini,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment