Commit 02097700 authored by Mark Otto's avatar Mark Otto
Browse files

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

parent dc10e6bb
3 merge requests!6060Waits to tigger the hidden event,!6055Typeahead complex source,!6061Sorry, close this. I pulled to the wrong branch!
Showing with 6 additions and 6 deletions
+6 -6
......@@ -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 {
......
......@@ -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
......
Supports Markdown
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