2015-08-18 09:33:34 +08:00
|
|
|
// Base class
|
2013-02-18 14:20:49 +08:00
|
|
|
//
|
2015-08-18 09:33:34 +08:00
|
|
|
// Requires one of the contextual, color modifier classes for `color` and
|
|
|
|
// `background-color`.
|
2015-04-19 02:38:47 +08:00
|
|
|
|
2016-10-27 09:33:58 +08:00
|
|
|
.badge {
|
2014-12-06 16:33:36 +08:00
|
|
|
display: inline-block;
|
2016-10-27 09:33:58 +08:00
|
|
|
padding: $badge-padding-y $badge-padding-x;
|
|
|
|
font-size: $badge-font-size;
|
|
|
|
font-weight: $badge-font-weight;
|
2013-02-18 14:20:49 +08:00
|
|
|
line-height: 1;
|
2016-10-27 09:33:58 +08:00
|
|
|
color: $badge-color;
|
2013-02-18 14:20:49 +08:00
|
|
|
text-align: center;
|
2013-04-24 19:54:17 +08:00
|
|
|
white-space: nowrap;
|
2013-07-30 23:23:25 +08:00
|
|
|
vertical-align: baseline;
|
2014-12-03 06:02:35 +08:00
|
|
|
@include border-radius();
|
2013-08-12 03:43:43 +08:00
|
|
|
|
2016-02-17 14:32:32 +08:00
|
|
|
// Empty tags collapse automatically
|
2013-08-12 03:43:43 +08:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-08-27 20:10:32 +08:00
|
|
|
}
|
2013-10-24 04:14:34 +08:00
|
|
|
|
2016-02-17 14:32:32 +08:00
|
|
|
// Quick fix for tags in buttons
|
2016-10-27 09:33:58 +08:00
|
|
|
.btn .badge {
|
2015-08-27 20:10:32 +08:00
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
2013-04-20 03:31:55 +08:00
|
|
|
}
|
|
|
|
|
2016-02-07 04:28:18 +08:00
|
|
|
// scss-lint:disable QualifyingElement
|
2014-12-03 06:02:35 +08:00
|
|
|
// Add hover effects, but only for links
|
2016-10-27 09:33:58 +08:00
|
|
|
a.badge {
|
2015-01-01 17:05:01 +08:00
|
|
|
@include hover-focus {
|
2016-10-27 09:33:58 +08:00
|
|
|
color: $badge-link-hover-color;
|
2014-12-03 06:02:35 +08:00
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2016-02-07 04:28:18 +08:00
|
|
|
// scss-lint:enable QualifyingElement
|
2014-12-03 06:02:35 +08:00
|
|
|
|
2016-02-17 14:32:32 +08:00
|
|
|
// Pill tags
|
2015-08-05 15:45:41 +08:00
|
|
|
//
|
|
|
|
// Make them extra rounded with a modifier to replace v3's badges.
|
|
|
|
|
2016-10-27 09:33:58 +08:00
|
|
|
.badge-pill {
|
|
|
|
padding-right: $badge-pill-padding-x;
|
|
|
|
padding-left: $badge-pill-padding-x;
|
|
|
|
@include border-radius($badge-pill-border-radius);
|
2015-08-05 15:45:41 +08:00
|
|
|
}
|
|
|
|
|
2013-04-22 21:34:23 +08:00
|
|
|
// Colors
|
2015-04-19 02:38:47 +08:00
|
|
|
//
|
2016-02-17 14:32:32 +08:00
|
|
|
// Contextual variations (linked tags get darker on :hover).
|
2013-08-06 06:30:28 +08:00
|
|
|
|
2016-10-27 09:33:58 +08:00
|
|
|
.badge-default {
|
|
|
|
@include badge-variant($badge-default-bg);
|
2013-08-06 06:30:28 +08:00
|
|
|
}
|
|
|
|
|
2016-10-27 09:33:58 +08:00
|
|
|
.badge-primary {
|
|
|
|
@include badge-variant($badge-primary-bg);
|
2013-04-20 03:31:55 +08:00
|
|
|
}
|
|
|
|
|
2016-10-27 09:33:58 +08:00
|
|
|
.badge-success {
|
|
|
|
@include badge-variant($badge-success-bg);
|
2013-04-20 03:31:55 +08:00
|
|
|
}
|
|
|
|
|
2016-10-27 09:33:58 +08:00
|
|
|
.badge-info {
|
|
|
|
@include badge-variant($badge-info-bg);
|
2013-08-16 02:31:26 +08:00
|
|
|
}
|
|
|
|
|
2016-10-27 09:33:58 +08:00
|
|
|
.badge-warning {
|
|
|
|
@include badge-variant($badge-warning-bg);
|
2013-02-18 14:20:49 +08:00
|
|
|
}
|
|
|
|
|
2016-10-27 09:33:58 +08:00
|
|
|
.badge-danger {
|
|
|
|
@include badge-variant($badge-danger-bg);
|
2013-07-02 08:32:07 +08:00
|
|
|
}
|