igna.rocks/assets/js/less/effects/background-transitions/_fade.less

15 lines
250 B
Plaintext

/* Fade */
.fade() {
.hacks();
overflow: hidden;
.prefixed(transition-duration, @mediumDuration);
.prefixed(transition-property, ~"color, background-color");
&:hover,
&:focus,
&:active {
background-color: @activeColor;
color: white;
}
}