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

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

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

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