diff options
| author | Mark Otto <[email protected]> | 2013-08-15 11:31:26 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-15 11:31:26 -0700 |
| commit | 209d3af30188a6b426f0cf84d81b367b2f056e1b (patch) | |
| tree | 80cfd06df8c80ca1de5a4f64d40692920fe36c2c /dist/css/bootstrap.css | |
| parent | a5cb6c7a152d5b20a9ced4cbd5315dc2c03dbaf0 (diff) | |
| download | bootstrap-209d3af30188a6b426f0cf84d81b367b2f056e1b.tar.xz bootstrap-209d3af30188a6b426f0cf84d81b367b2f056e1b.zip | |
Fixes #9617: consistent variation order, add .label-primary
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index f6371cf13..bec2ddbce 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4662,13 +4662,13 @@ a.thumbnail:focus { background-color: #808080; } -.label-danger { - background-color: #d9534f; +.label-primary { + background-color: #428bca; } -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color: #c9302c; +.label-primary[href]:hover, +.label-primary[href]:focus { + background-color: #3071a9; } .label-success { @@ -4680,6 +4680,15 @@ a.thumbnail:focus { background-color: #449d44; } +.label-info { + background-color: #5bc0de; +} + +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} + .label-warning { background-color: #f0ad4e; } @@ -4689,13 +4698,13 @@ a.thumbnail:focus { background-color: #ec971f; } -.label-info { - background-color: #5bc0de; +.label-danger { + background-color: #d9534f; } -.label-info[href]:hover, -.label-info[href]:focus { - background-color: #31b0d5; +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; } .badge { |
