1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-21 04:41:36 +02:00

Fixes #9617: consistent variation order, add .label-primary

This commit is contained in:
Mark Otto
2013-08-15 11:31:26 -07:00
parent a5cb6c7a15
commit 209d3af301
7 changed files with 87 additions and 44 deletions

View File

@@ -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 {

File diff suppressed because one or more lines are too long