forked from MiguelCastillo/Brackets-Ternific
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (60 loc) · 1.09 KB
/
style.css
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
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
* From tern docs.css
*/
.Tern-fname { color: black; }
.Tern-farg { color: #70a; }
.Tern-farg-current { text-decoration: underline; }
.Tern-type { color: #07c; }
.Tern-fhint-guess { opacity: .7; }
.Tern-completion {
padding-left: 22px;
position: relative;
}
.Tern-completion:before {
position: absolute;
left: 2px;
bottom: 2px;
border-radius: 50%;
font-size: 12px;
font-weight: bold;
height: 15px;
width: 15px;
line-height: 16px;
text-align: center;
color: white;
box-sizing: border-box;
}
.Tern-completion-unknown:before {
content: "?";
background: #4bb;
}
.Tern-completion-object:before {
content: "O";
background: #77c;
}
.Tern-completion-fn:before {
content: "F";
background: #7c7;
}
.Tern-completion-array:before {
content: "A";
background: #c66;
}
.Tern-completion-number:before {
content: "1";
background: #999;
}
.Tern-completion-string:before {
content: "S";
background: #999;
}
.Tern-completion-bool:before {
content: "B";
background: #999;
}
.Tern-completion-guess {
color: #999;
}
.Tern-reference-highlight {
background-color: yellow;
}