diff options
| author | Julian Thilo <[email protected]> | 2014-01-07 22:24:45 +0100 |
|---|---|---|
| committer | Julian Thilo <[email protected]> | 2014-01-07 22:24:45 +0100 |
| commit | 8fd177bfa78d3e742486a66450465f3716cd11b2 (patch) | |
| tree | 70464468ed5a225b294c4da72649051a56e6a417 /dist/css/bootstrap-theme.css | |
| parent | 5f328dce889823f1ec78844427a48da4c2eb6638 (diff) | |
| download | bootstrap-8fd177bfa78d3e742486a66450465f3716cd11b2.tar.xz bootstrap-8fd177bfa78d3e742486a66450465f3716cd11b2.zip | |
Fix #12073: Consistent order of variations
This changes the order of component variations throughout the repo (code and docs) to be more consistent.
The order now used everywhere is the one most frequently found in the repo before:
Default, Primary, Success, Info, Warning, Danger
Diffstat (limited to 'dist/css/bootstrap-theme.css')
| -rw-r--r-- | dist/css/bootstrap-theme.css | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/dist/css/bootstrap-theme.css b/dist/css/bootstrap-theme.css index 46b1e29c1..e3add8dfc 100644 --- a/dist/css/bootstrap-theme.css +++ b/dist/css/bootstrap-theme.css @@ -89,6 +89,24 @@ background-color: #419641; border-color: #3e8f3e; } +.btn-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #28a4c9; +} +.btn-info:hover, +.btn-info:focus { + background-color: #2aabd2; + background-position: 0 -15px; +} +.btn-info:active, +.btn-info.active { + background-color: #2aabd2; + border-color: #28a4c9; +} .btn-warning { background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); @@ -125,24 +143,6 @@ background-color: #c12e2a; border-color: #b92c28; } -.btn-info { - background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); - background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #28a4c9; -} -.btn-info:hover, -.btn-info:focus { - background-color: #2aabd2; - background-position: 0 -15px; -} -.btn-info:active, -.btn-info.active { - background-color: #2aabd2; - border-color: #28a4c9; -} .thumbnail, .img-thumbnail { -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); |
