forked from thehogfather/brackets-code-folding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.less
46 lines (42 loc) · 816 Bytes
/
main.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
@font-size: 1.2em;
@color: #aaa;
.CodeMirror-foldgutter {
&-open:after {
content: "\25bc";
font-size: @font-size;
color: @color;
}
&-folded:after {
content: "\25b6";
font-size: @font-size;
color: @color;
}
}
.CodeMirror-foldgutter,
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded,
.CodeMirror-foldgutter-blank {
width: @font-size;
cursor: default;
line-height: 100%;
}
.CodeMirror-foldmarker {
padding-right: 5px;
padding-left: 5px;
margin-right: 3px;
margin-left: 3px;
border-radius: 3px;
cursor: pointer;
border: 1px solid lighten(@color, 10%);
color: darken(@color, 20%);
background-color: lighten(@color, 20%);
}
#code-folding-settings-dialog {
label {
width: 40%;
padding-right: 10px;
}
input[type=number] {
width: 40px;
}
}