twbs--bootstrap/scss/_labels.scss

77 lines
1.2 KiB
SCSS
Raw Normal View History

//
// Labels
// --------------------------------------------------
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 & {
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-left: .6em;
padding-right: .6em;
border-radius: 1rem;
}
2015-04-18 18:38:47 +00:00
// 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
}