From d55e54fda7bdcd6e2833fadd4f152f3af9ded6da Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Tue, 10 Dec 2013 16:08:18 -0800 Subject: [PATCH] Fix text color hover states --- stylesheets/text.less | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/stylesheets/text.less b/stylesheets/text.less index 8f9c9fc..e4d53f0 100644 --- a/stylesheets/text.less +++ b/stylesheets/text.less @@ -42,10 +42,19 @@ code { .text-subtle { .text(subtle); } .text-highlight { .text(highlight); } -.text-info { .text(info); } -.text-warning { .text(warning); } -.text-success { .text(success); } .text-error { .text(error); } +.text-info { + .text(info); + &:hover { color: @text-color-info; } +} +.text-warning { + .text(warning); + &:hover { color: @text-color-warning; } +} +.text-success { + .text(success); + &:hover { color: @text-color-success; } +} .highlight { color: @text-color-highlight;