forked from minodisk/refactor
-
Notifications
You must be signed in to change notification settings - Fork 8
/
refactor.less
44 lines (38 loc) · 828 Bytes
/
refactor.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@import "octicon-utf-codes.less";
@import "ui-variables.less";
atom-text-editor.editor {
.refactor-reference {
.region {
border-radius: 2px;
box-sizing: border-box;
background-color: rgba(54, 175, 144, 0.2);
border: 1px solid rgba(54, 175, 144, 0.3);
}
}
.refactor-ref .region {
border-bottom: 1px solid green;
}
.refactor-mut .region {
border-bottom: 2px solid red;
}
.refactor-decl .region {
border-bottom: 2px solid orange;
}
.refactor-error {
.region {
box-sizing: border-box;
border-bottom: 1px dotted rgba(255, 0, 0, 1);
}
}
.gutter {
.line-number.refactor-error {
.icon-right {
visibility: visible;
&:before {
content: @alert;
color: @text-color-error;
}
}
}
}
}