2015-08-17 21:33:34 -04:00
|
|
|
// Base class
|
2013-02-18 01:20:49 -05:00
|
|
|
//
|
2015-08-17 21:33:34 -04:00
|
|
|
// Requires one of the contextual, color modifier classes for `color` and
|
|
|
|
// `background-color`.
|
2015-04-18 14:38:47 -04:00
|
|
|
|
2016-10-26 21:33:58 -04:00
|
|
|
.badge {
|
2014-12-06 03:33:36 -05:00
|
|
|
display: inline-block;
|
2016-10-26 21:33:58 -04:00
|
|
|
padding: $badge-padding-y $badge-padding-x;
|
2019-02-07 17:32:05 -05:00
|
|
|
@include font-size($badge-font-size);
|
2016-10-26 21:33:58 -04:00
|
|
|
font-weight: $badge-font-weight;
|
2013-02-18 01:20:49 -05:00
|
|
|
line-height: 1;
|
2019-03-14 13:15:26 -04:00
|
|
|
color: $badge-color;
|
2013-02-18 01:20:49 -05:00
|
|
|
text-align: center;
|
2013-04-24 07:54:17 -04:00
|
|
|
white-space: nowrap;
|
2013-07-30 11:23:25 -04:00
|
|
|
vertical-align: baseline;
|
2017-10-03 00:11:11 -04:00
|
|
|
@include border-radius($badge-border-radius);
|
2020-04-14 10:28:20 -04:00
|
|
|
@include gradient-bg();
|
2018-08-29 13:48:41 -04:00
|
|
|
|
2016-12-26 12:56:22 -05:00
|
|
|
// Empty badges collapse automatically
|
2013-08-11 15:43:43 -04:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-08-27 08:10:32 -04:00
|
|
|
}
|
2013-10-23 16:14:34 -04:00
|
|
|
|
2016-12-26 12:56:22 -05:00
|
|
|
// Quick fix for badges in buttons
|
2016-10-26 21:33:58 -04:00
|
|
|
.btn .badge {
|
2015-08-27 08:10:32 -04:00
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
2013-04-19 15:31:55 -04:00
|
|
|
}
|