Fix text lint error

This commit is contained in:
Ben Ogle
2015-05-29 13:21:45 -07:00
parent 604e41966d
commit 49c8a10c08

View File

@@ -1,21 +1,23 @@
@import "ui-variables";
.text-bits (@type) {
@text-color: "text-color-@{type}";
@bg-color: "background-color-@{type}";
@text-color-name: "text-color-@{type}";
@bg-color-name: "background-color-@{type}";
@text-color: @@text-color-name;
@bg-color: @@bg-color-name;
code {
color: @@text-color;
background: fadeout(@@bg-color, 80%);
color: @text-color;
background: fadeout(@bg-color, 80%);
}
a, a code {
color: @@text-color;
text-decoration: underline;
color: darken(@@text-color, 10%);
color: darken(@text-color, 10%);
&:hover {
color: darken(@@text-color, 15%);
color: darken(@text-color, 15%);
}
}
}