diff options
| author | Mark Otto <[email protected]> | 2013-02-02 13:03:18 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-02-02 13:03:18 -0800 |
| commit | c64aa26d062b53a40be55ea62017bd04f523b290 (patch) | |
| tree | a85f3116c9472d2a5576fea5e64a1e436b003b27 /docs | |
| parent | 94e256c0162748dcddd6401d57a186576254f884 (diff) | |
| download | bootstrap-c64aa26d062b53a40be55ea62017bd04f523b290.tar.xz bootstrap-c64aa26d062b53a40be55ea62017bd04f523b290.zip | |
Add @btn-color variable and use in buttons and carets; fixes dropup caret as well
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 01c603b26..66002d292 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1679,7 +1679,7 @@ input[type="button"].btn-block { } .btn { - color: #fff; + color: #ffffff; background-color: #a7a9aa; border-color: #a7a9aa; } @@ -3245,9 +3245,12 @@ button.close { */ -.caret { - border-top-color: #fff; - border-bottom-color: #fff; +.btn .caret { + border-top-color: #ffffff; +} + +.dropup .btn .caret { + border-bottom-color: #ffffff; } .btn-group { @@ -3345,18 +3348,9 @@ button.close { } .btn-large .caret { - margin-top: 6px; -} - -.btn-large .caret { border-width: 5px; } -.btn-mini .caret, -.btn-small .caret { - margin-top: 8px; -} - .dropup .btn-large .caret { border-bottom-width: 5px; } |
