twbs--bootstrap/scss/_badge.scss

78 lines
1.5 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
.badge {
display: inline-block;
padding: $badge-padding-y $badge-padding-x;
font-size: $badge-font-size;
font-weight: $badge-font-weight;
line-height: 1;
color: $badge-color;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
2014-12-02 22:02:35 +00:00
@include border-radius();
// Empty tags collapse automatically
&:empty {
display: none;
}
}
// Quick fix for tags in buttons
.btn .badge {
position: relative;
top: -1px;
2013-04-19 19:31:55 +00:00
}
2016-02-06 20:28:18 +00:00
// scss-lint:disable QualifyingElement
2014-12-02 22:02:35 +00:00
// Add hover effects, but only for links
a.badge {
@include hover-focus {
color: $badge-link-hover-color;
2014-12-02 22:02:35 +00:00
text-decoration: none;
cursor: pointer;
}
}
2016-02-06 20:28:18 +00:00
// scss-lint:enable QualifyingElement
2014-12-02 22:02:35 +00:00
// Pill tags
//
// Make them extra rounded with a modifier to replace v3's badges.
.badge-pill {
padding-right: $badge-pill-padding-x;
padding-left: $badge-pill-padding-x;
@include border-radius($badge-pill-border-radius);
}
// Colors
2015-04-18 18:38:47 +00:00
//
// Contextual variations (linked tags get darker on :hover).
.badge-default {
@include badge-variant($badge-default-bg);
}
.badge-primary {
@include badge-variant($badge-primary-bg);
2013-04-19 19:31:55 +00:00
}
.badge-success {
@include badge-variant($badge-success-bg);
2013-04-19 19:31:55 +00:00
}
.badge-info {
@include badge-variant($badge-info-bg);
}
.badge-warning {
@include badge-variant($badge-warning-bg);
}
.badge-danger {
@include badge-variant($badge-danger-bg);
2013-07-02 00:32:07 +00:00
}