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 {
|
2021-11-17 11:01:30 +08:00
|
|
|
// scss-docs-start badge-css-vars
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-14 01:13:09 +08:00
|
|
|
--#{$prefix}badge-padding-x: #{$badge-padding-x};
|
|
|
|
--#{$prefix}badge-padding-y: #{$badge-padding-y};
|
|
|
|
@include rfs($badge-font-size, --#{$prefix}badge-font-size);
|
|
|
|
--#{$prefix}badge-font-weight: #{$badge-font-weight};
|
|
|
|
--#{$prefix}badge-color: #{$badge-color};
|
|
|
|
--#{$prefix}badge-border-radius: #{$badge-border-radius};
|
2021-11-17 11:01:30 +08:00
|
|
|
// scss-docs-end badge-css-vars
|
|
|
|
|
2014-12-06 16:33:36 +08:00
|
|
|
display: inline-block;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-14 01:13:09 +08:00
|
|
|
padding: var(--#{$prefix}badge-padding-y) var(--#{$prefix}badge-padding-x);
|
2022-04-01 00:12:52 +08:00
|
|
|
@include font-size(var(--#{$prefix}badge-font-size));
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-14 01:13:09 +08:00
|
|
|
font-weight: var(--#{$prefix}badge-font-weight);
|
2013-02-18 14:20:49 +08:00
|
|
|
line-height: 1;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-14 01:13:09 +08:00
|
|
|
color: var(--#{$prefix}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;
|
2022-06-30 04:14:49 +08:00
|
|
|
@include border-radius(var(--#{$prefix}badge-border-radius));
|
2020-04-14 22:28:20 +08:00
|
|
|
@include gradient-bg();
|
2018-08-30 01:48:41 +08:00
|
|
|
|
2016-12-27 01:56:22 +08:00
|
|
|
// Empty badges 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-12-27 01:56:22 +08:00
|
|
|
// Quick fix for badges 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
|
|
|
}
|