Fixes #11766: Use color var for background on badges in buttons to restore proper background to default button badge

This commit is contained in:
Mark Otto 2013-12-07 11:45:11 -08:00
parent 2b4fa90902
commit 107b334d34
3 changed files with 8 additions and 8 deletions

View File

@ -2344,7 +2344,7 @@ fieldset[disabled] .btn-default.active {
.btn-default .badge {
color: #ffffff;
background-color: #fff;
background-color: #333333;
}
.btn-primary {
@ -2390,7 +2390,7 @@ fieldset[disabled] .btn-primary.active {
.btn-primary .badge {
color: #428bca;
background-color: #fff;
background-color: #ffffff;
}
.btn-warning {
@ -2436,7 +2436,7 @@ fieldset[disabled] .btn-warning.active {
.btn-warning .badge {
color: #f0ad4e;
background-color: #fff;
background-color: #ffffff;
}
.btn-danger {
@ -2482,7 +2482,7 @@ fieldset[disabled] .btn-danger.active {
.btn-danger .badge {
color: #d9534f;
background-color: #fff;
background-color: #ffffff;
}
.btn-success {
@ -2528,7 +2528,7 @@ fieldset[disabled] .btn-success.active {
.btn-success .badge {
color: #5cb85c;
background-color: #fff;
background-color: #ffffff;
}
.btn-info {
@ -2574,7 +2574,7 @@ fieldset[disabled] .btn-info.active {
.btn-info .badge {
color: #5bc0de;
background-color: #fff;
background-color: #ffffff;
}
.btn-link {

File diff suppressed because one or more lines are too long

View File

@ -475,7 +475,7 @@
.badge {
color: @background;
background-color: #fff;
background-color: @color;
}
}