diff options
| author | Mark Otto <[email protected]> | 2012-09-17 23:19:52 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-09-17 23:19:52 -0700 |
| commit | 3b3def4898b7d60e9a8b9b95707ee56323b23f36 (patch) | |
| tree | 8ee1c848a59eaf47fd6250dfb81192f263d98e5b /less | |
| parent | 239e6a7d210a69413d0f4b4b000f2f38f53e1c44 (diff) | |
| download | bootstrap-3b3def4898b7d60e9a8b9b95707ee56323b23f36.tar.xz bootstrap-3b3def4898b7d60e9a8b9b95707ee56323b23f36.zip | |
fixes #5087: add hover states to text emphasis classes for links
Diffstat (limited to 'less')
| -rw-r--r-- | less/type.less | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/less/type.less b/less/type.less index 2e0f386ee..78ccb8119 100644 --- a/less/type.less +++ b/less/type.less @@ -39,15 +39,27 @@ cite { } .text-warning { color: @warningText; + &:hover { + color: darken(@warningText, 10%); + } } .text-error { color: @errorText; + &:hover { + color: darken(@errorText, 10%); + } } .text-info { color: @infoText; + &:hover { + color: darken(@infoText, 10%); + } } .text-success { color: @successText; + &:hover { + color: darken(@successText, 10%); + } } |
