Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2012-11-28 12:31:52 +0400
committerMark Otto <otto@github.com>2012-11-28 12:31:52 +0400
commit02097700e8ab24506dda5332778398119dc8b728 (patch)
tree08158b2fcb54f9324eda7074dace6e6ab41b0b7e /less
parentdc10e6bbf8d051d763ec0c14dd8f5307ac356654 (diff)
Fixes #6035: use font-size vars in button groups
Diffstat (limited to 'less')
-rw-r--r--less/button-groups.less6
1 files changed, 3 insertions, 3 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index 8c3b9ff045..002a3ff075 100644
--- a/less/button-groups.less
+++ b/less/button-groups.less
@@ -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