-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSONViewConfig.css
More file actions
74 lines (59 loc) · 1 KB
/
Copy pathJSONViewConfig.css
File metadata and controls
74 lines (59 loc) · 1 KB
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
66
67
68
69
70
71
72
73
74
body {
white-space: pre;
font-family: monospace;
background-color: #22272e;
color: #abb2bf;
font-size: 14px;
}
li {
margin-bottom: 1px;
}
.property {
font-weight: bold;
}
.type-null {
color: gray;
}
.type-boolean {
color: #96d0ff;
}
.type-number {
color: #c678dd;
}
.type-string, a {
color: #e5c07b;
}
.callback-function {
color: gray;
}
.collapser:after {
content: "-";
}
.collapsed > .collapser:after {
content: "+";
}
.ellipsis:after {
content: " … ";
}
.collapsible {
margin-left: 2em;
}
.hoverable {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 2px;
padding-right: 2px;
border-radius: 2px;
}
.hovered {
background-color: rgba(235, 238, 249, 1);
/* background-color: #39404a; */
background-color: #2d333b;
}
.selected {
outline-style: solid;
}
.collapser {
padding-right: 6px;
padding-left: 6px;
}