1
0
mirror of https://github.com/Rnhmjoj/solarized-dark-ui synced 2025-01-26 11:54:21 +01:00

Fix text color hover states

This commit is contained in:
Ben Ogle 2013-12-10 16:08:18 -08:00
parent 465dbc2681
commit d55e54fda7

View File

@ -42,10 +42,19 @@ code {
.text-subtle { .text(subtle); } .text-subtle { .text(subtle); }
.text-highlight { .text(highlight); } .text-highlight { .text(highlight); }
.text-info { .text(info); }
.text-warning { .text(warning); }
.text-success { .text(success); }
.text-error { .text(error); } .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 { .highlight {
color: @text-color-highlight; color: @text-color-highlight;