Fixes #6035: use font-size vars in button groups

This commit is contained in:
Mark Otto 2012-11-28 00:31:52 -08:00
parent dc10e6bbf8
commit 02097700e8
2 changed files with 6 additions and 6 deletions

View File

@ -3596,15 +3596,15 @@ input[type="submit"].btn.btn-mini {
}
.btn-group > .btn-mini {
font-size: 11px;
font-size: 10.5px;
}
.btn-group > .btn-small {
font-size: 12px;
font-size: 11.9px;
}
.btn-group > .btn-large {
font-size: 16px;
font-size: 17.5px;
}
.btn-group > .btn:first-child {

View File

@ -46,13 +46,13 @@
// Reset fonts for other sizes
.btn-group > .btn-mini {
font-size: 11px;
font-size: @fontSizeMini;
}
.btn-group > .btn-small {
font-size: 12px;
font-size: @fontSizeSmall;
}
.btn-group > .btn-large {
font-size: 16px;
font-size: @fontSizeLarge;
}
// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match