-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy patheditor.less
52 lines (44 loc) · 908 Bytes
/
editor.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
45
46
47
48
49
50
51
52
@import 'colors';
@import 'language';
@import 'syntax-variables';
atom-text-editor {
background-color: @background;
color: @foreground;
.line.cursor-line{
background-color: @current_line;
}
.invisible, .invisible-character{
color: @invisible;
}
.selection{
.region{
background-color: @selection;
}
.cursor {
border-color: @border;
}
}
.indent-guide{
box-shadow: 1px 0 #444;
}
.wrap-guide{
background-color: current_line;
}
.gutter{
.line-number{
background-color: darken(@background, 2.3%);
color: @border;
-webkit-font-smoothing: antialised;
&.git-line-added{
border-left: 2px solid;
}
&.git-line-modified{
border-left: 2px solid @yellow;
}
&.git-line-removed{
border-left: 2px solid @orange;
padding-left: calc(.5em - 2px);
}
}
}
}