Commit 02097700 authored by Mark Otto's avatar Mark Otto

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

parent dc10e6bb
...@@ -3596,15 +3596,15 @@ input[type="submit"].btn.btn-mini { ...@@ -3596,15 +3596,15 @@ input[type="submit"].btn.btn-mini {
} }
.btn-group > .btn-mini { .btn-group > .btn-mini {
font-size: 11px; font-size: 10.5px;
} }
.btn-group > .btn-small { .btn-group > .btn-small {
font-size: 12px; font-size: 11.9px;
} }
.btn-group > .btn-large { .btn-group > .btn-large {
font-size: 16px; font-size: 17.5px;
} }
.btn-group > .btn:first-child { .btn-group > .btn:first-child {
......
...@@ -46,13 +46,13 @@ ...@@ -46,13 +46,13 @@
// Reset fonts for other sizes // Reset fonts for other sizes
.btn-group > .btn-mini { .btn-group > .btn-mini {
font-size: 11px; font-size: @fontSizeMini;
} }
.btn-group > .btn-small { .btn-group > .btn-small {
font-size: 12px; font-size: @fontSizeSmall;
} }
.btn-group > .btn-large { .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 // 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
......
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