aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/twbs/bootstrap/scss/mixins/_badge.scss
blob: f1c499141accb569142e67a5ffff52ea1fb22cf1 (plain) (tree)
1
2
3
4
5
6
7
8
9



                           
                  
                            
                            

                                         





                                                         

   
@mixin badge-variant($bg) {
  color: color-yiq($bg);
  background-color: $bg;

  @at-root a#{&} {
    @include hover-focus() {
      color: color-yiq($bg);
      background-color: darken($bg, 10%);
    }

    &:focus,
    &.focus {
      outline: 0;
      box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
    }
  }
}