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