twbs--bootstrap/scss/_labels.scss

76 lines
1.3 KiB
SCSS
Raw Normal View History

// Base class
//
// Requires one of the contextual, color modifier classes for `color` and
// `background-color`.
2015-04-18 18:38:47 +00:00
.label {
display: inline-block;
padding: .25em .4em;
font-size: 75%;
font-weight: bold;
line-height: 1;
2014-12-02 22:02:35 +00:00
color: $label-color;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
2014-12-02 22:02:35 +00:00
@include border-radius();
// Empty labels collapse automatically
&:empty {
display: none;
}
}
// Quick fix for labels in buttons
.btn .label {
position: relative;
top: -1px;
2013-04-19 19:31:55 +00:00
}
2014-12-02 22:02:35 +00:00
// Add hover effects, but only for links
a.label {
@include hover-focus {
2014-12-02 22:02:35 +00:00
color: $label-link-hover-color;
text-decoration: none;
cursor: pointer;
}
}
// Pill labels
//
// Make them extra rounded with a modifier to replace v3's badges.
.label-pill {
padding-right: .6em;
2015-08-23 08:00:22 +00:00
padding-left: .6em;
@include border-radius(1rem);
}
// Colors
2015-04-18 18:38:47 +00:00
//
// Contextual variations (linked labels get darker on :hover).
.label-default {
2014-12-02 22:02:35 +00:00
@include label-variant($label-default-bg);
}
.label-primary {
2014-12-02 22:02:35 +00:00
@include label-variant($label-primary-bg);
2013-04-19 19:31:55 +00:00
}
.label-success {
2014-12-02 22:02:35 +00:00
@include label-variant($label-success-bg);
2013-04-19 19:31:55 +00:00
}
.label-info {
2014-12-02 22:02:35 +00:00
@include label-variant($label-info-bg);
}
.label-warning {
2014-12-02 22:02:35 +00:00
@include label-variant($label-warning-bg);
}
.label-danger {
2014-12-02 22:02:35 +00:00
@include label-variant($label-danger-bg);
2013-07-02 00:32:07 +00:00
}