diff options
| author | Mark Otto <[email protected]> | 2012-07-30 12:52:44 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-30 12:52:44 -0700 |
| commit | b2ebd5c46ca538142c5cd4164328c56053b5c79d (patch) | |
| tree | 8281ab10e54759ebf419618d9dae82cf4c6c2dcd /less | |
| parent | 7fa99fb1fe9392f61cb5c46f7e5082e73e8b8784 (diff) | |
| download | bootstrap-b2ebd5c46ca538142c5cd4164328c56053b5c79d.tar.xz bootstrap-b2ebd5c46ca538142c5cd4164328c56053b5c79d.zip | |
update button styles to use updated 14px base font size, align carets to others with no opacity changes
Diffstat (limited to 'less')
| -rw-r--r-- | less/button-groups.less | 29 | ||||
| -rw-r--r-- | less/buttons.less | 8 | ||||
| -rw-r--r-- | less/variables.less | 2 |
3 files changed, 17 insertions, 22 deletions
diff --git a/less/button-groups.less b/less/button-groups.less index 05235b93b..cbb237a61 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -34,11 +34,13 @@ } .btn-group > .btn, .btn-group > .dropdown-menu { - font-size: 13px; // redeclare as part 2 of font-size inline-block hack + font-size: @baseFontSize; // redeclare as part 2 of font-size inline-block hack } // Reset fonts for other sizes -.btn-group > .btn-mini, +.btn-group > .btn-mini { + font-size: 11px; +} .btn-group > .btn-small { font-size: 12px; } @@ -106,22 +108,22 @@ // ---------------------- // Give the line between buttons some depth -.btn-group > .dropdown-toggle { +.btn-group > .btn + .dropdown-toggle { padding-left: 8px; padding-right: 8px; .box-shadow(~"inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)"); *padding-top: 4px; *padding-bottom: 4px; } -.btn-group > .btn-mini.dropdown-toggle { +.btn-group > .btn-mini + .dropdown-toggle { padding-left: 5px; padding-right: 5px; } -.btn-group > .btn-small.dropdown-toggle { +.btn-group > .btn-small + .dropdown-toggle { *padding-top: 4px; *padding-bottom: 4px; } -.btn-group > .btn-large.dropdown-toggle { +.btn-group > .btn-large + .dropdown-toggle { padding-left: 12px; padding-right: 12px; } @@ -162,22 +164,16 @@ // Reposition the caret .btn .caret { - margin-top: 7px; + margin-top: 8px; margin-left: 0; } -.btn:hover .caret, -.open.btn-group .caret { - .opacity(100); -} // Carets in other button sizes -.btn-mini .caret { - margin-top: 5px; -} -.btn-small .caret { +.btn-mini .caret, +.btn-small .caret, +.btn-large .caret { margin-top: 6px; } .btn-large .caret { - margin-top: 6px; border-left-width: 5px; border-right-width: 5px; border-top-width: 5px; @@ -200,7 +196,6 @@ .caret { border-top-color: @white; border-bottom-color: @white; - .opacity(75); } } diff --git a/less/buttons.less b/less/buttons.less index 7184811b5..eb0290d8e 100644 --- a/less/buttons.less +++ b/less/buttons.less @@ -12,9 +12,9 @@ .ie7-inline-block(); padding: 4px 14px; margin-bottom: 0; // For input.btn - font-size: 13px; - line-height: 20px; - *line-height: 20px; + font-size: @baseFontSize; + line-height: @baseLineHeight; + *line-height: @baseLineHeight; text-align: center; vertical-align: middle; cursor: pointer; @@ -95,7 +95,7 @@ // Mini .btn-mini { padding: 2px 6px; - font-size: @baseFontSize - 2px; + font-size: @baseFontSize - 3px; line-height: @baseLineHeight - 4px; } diff --git a/less/variables.less b/less/variables.less index 7d627f9ee..93cd1d639 100644 --- a/less/variables.less +++ b/less/variables.less @@ -70,7 +70,7 @@ // ------------------------- @btnBackground: @white; @btnBackgroundHighlight: darken(@white, 10%); -@btnBorder: #ccc; +@btnBorder: #bbb; @btnPrimaryBackground: @linkColor; @btnPrimaryBackgroundHighlight: spin(@btnPrimaryBackground, 20%); |
