hugo-whisper-theme/assets/scss/bootstrap/mixins/_badge.scss

18 lines
318 B
SCSS
Raw Normal View History

2019-02-17 06:55:16 +00:00
@mixin badge-variant($bg) {
color: color-yiq($bg);
background-color: $bg;
2019-07-23 01:03:11 +00:00
@at-root a#{&} {
2019-02-17 06:55:16 +00:00
@include hover-focus {
color: color-yiq($bg);
background-color: darken($bg, 10%);
}
2019-07-23 01:03:11 +00:00
&:focus,
&.focus {
outline: 0;
box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
}
2019-02-17 06:55:16 +00:00
}
}