Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_label.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bc48c60dd5a51fdad2365a1b1c2548ef30a1f8e (plain)
1
2
3
4
5
6
7
8
9
10
11
// Labels

@mixin label-variant($color) {
  background-color: $color;

  &[href] {
    @include hover-focus {
      background-color: darken($color, 10%);
    }
  }
}