This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/js/bootstrap/mixins/_background-variant.scss

13 lines
233 B
SCSS
Raw Normal View History

2014-12-10 11:36:38 +00:00
// Contextual backgrounds
// [converter] $parent hack
@mixin bg-variant($parent, $color) {
#{$parent} {
background-color: $color;
}
2015-08-12 07:06:27 +00:00
a#{$parent}:hover,
a#{$parent}:focus {
2014-12-10 11:36:38 +00:00
background-color: darken($color, 10%);
}
}