1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/less/labels.less

57 lines
1.1 KiB
Text
Raw Normal View History

//
// Labels
// --------------------------------------------------
.label {
2013-04-19 15:31:55 -04:00
display: inline;
padding: .25em .6em;
font-size: 75%;
font-weight: 500;
color: #fff;
line-height: 1;
vertical-align: middle;
white-space: nowrap;
text-align: center;
background-color: @gray-light;
border-radius: .25em;
// Nuke the hover effects for a.label and for label[href] - for anchors
&[href], a& {
2013-04-19 15:31:55 -04:00
&:hover,
&:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
}
}
// Colors
// Varying the background-color - if the a has href, then deploy darker color
2013-04-19 15:31:55 -04:00
.label-danger {
background-color: @label-danger-bg;
&[href] {
background-color: darken(@label-danger-bg, 10%);
}
2013-04-19 15:31:55 -04:00
}
.label-success {
background-color: @label-success-bg;
&[href] {
background-color: darken(@label-success-bg, 10%);
}
2013-04-19 15:31:55 -04:00
}
.label-warning {
background-color: @label-warning-bg;
&[href] {
background-color: darken(@label-warning-bg, 10%);
}
}
2013-04-19 15:31:55 -04:00
.label-info {
background-color: @label-info-bg;
&[href] {
background-color: darken(@label-info-bg, 10%);
}
}