1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

Make .text-emphasis-variant adjust :focus color in addition to :hover color

Closes #16047 by merging a tweaked version of it.
This commit is contained in:
Serhan Apaydın 2015-03-11 14:24:16 +02:00 committed by Chris Rebert
parent 39a05d7420
commit ba2d556455

View file

@ -2,7 +2,8 @@
.text-emphasis-variant(@color) {
color: @color;
a&:hover {
a&:hover,
a&:focus {
color: darken(@color, 10%);
}
}