web-apps/vendor/bootstrap/less/mixins/_badge.less
2020-05-21 19:29:40 +03:00

19 lines
342 B
Plaintext

#badge-variant(@bg) {
color: color-yiq(@bg);
background-color: @bg;
// LESS PORT: Less has no `@at-root` equivalent, so omitting that here.
a& {
#hover-focus({
color: color-yiq(@bg);
background-color: darken(@bg, 10%);
});
&:focus,
&.focus {
outline: 0;
box-shadow: 0 0 0 @badge-focus-width fade(@bg, 50%);
}
}
}