diff options
| author | Serhan Apaydın <[email protected]> | 2015-03-11 14:24:16 +0200 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-03-25 22:08:36 -0700 |
| commit | ba2d556455c6dad083d31bf052e1f1d09a7da99a (patch) | |
| tree | 5225adacb829983473da12ae4fac438c8f6b7f82 | |
| parent | 39a05d74207b7982443ddd7deb0cf85806ccd905 (diff) | |
| download | bootstrap-ba2d556455c6dad083d31bf052e1f1d09a7da99a.tar.xz bootstrap-ba2d556455c6dad083d31bf052e1f1d09a7da99a.zip | |
Make .text-emphasis-variant adjust :focus color in addition to :hover color
Closes #16047 by merging a tweaked version of it.
| -rw-r--r-- | less/mixins/text-emphasis.less | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/less/mixins/text-emphasis.less b/less/mixins/text-emphasis.less index 0868ef9f2..9e8a77a69 100644 --- a/less/mixins/text-emphasis.less +++ b/less/mixins/text-emphasis.less @@ -2,7 +2,8 @@ .text-emphasis-variant(@color) { color: @color; - a&:hover { + a&:hover, + a&:focus { color: darken(@color, 10%); } } |
