Stackedit/js/libs/bootstrap/less/labels.less

55 lines
931 B
Plaintext
Raw Normal View History

2013-08-04 00:54:25 +00:00
//
// Labels
// --------------------------------------------------
.label {
display: inline;
padding: .25em .6em;
font-size: 75%;
2013-08-14 23:44:51 +00:00
font-weight: bold;
2013-08-04 00:54:25 +00:00
line-height: 1;
color: @label-color;
text-align: center;
white-space: nowrap;
2013-08-14 23:44:51 +00:00
vertical-align: baseline;
2013-08-04 00:54:25 +00:00
border-radius: .25em;
// Add hover effects, but only for links
&[href] {
&:hover,
&:focus {
color: @label-link-hover-color;
text-decoration: none;
cursor: pointer;
}
}
2013-08-14 23:44:51 +00:00
// Empty labels collapse automatically (not available in IE8)
&:empty {
display: none;
}
2013-08-04 00:54:25 +00:00
}
// Colors
// Contextual variations (linked labels get darker on :hover)
2013-08-14 23:44:51 +00:00
.label-default {
.label-variant(@label-default-bg);
}
2013-08-04 00:54:25 +00:00
.label-danger {
.label-variant(@label-danger-bg);
}
.label-success {
.label-variant(@label-success-bg);
}
.label-warning {
.label-variant(@label-warning-bg);
}
.label-info {
.label-variant(@label-info-bg);
}