mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Fix text lint error
This commit is contained in:
@@ -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%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user