elemental
Version:
React UI Framework
33 lines (29 loc) • 547 B
text/less
//
// Tags
// ==============================
.pill-variant(@color, @background) {
background-color: @background;
color: @color;
// states
&:hover,
&:focus {
background-color: darken(@background, 4%);
outline: none;
}
&:active {
background-color: darken(@background, 8%);
}
}
.pill-inverted-variant(@color, @background) {
background-color: @background;
color: @color;
// states
&:hover,
&:focus {
background-color: lighten(@background, 5%);
outline: none;
}
&:active {
background-color: darken(@background, 5%);
}
}