fix json key to string conversion.
[apps/agl-service-data-persistence.git] / htdocs / persistence / binding-debug.css
1 #debug-panel {
2         float: right;
3 }
4
5 #debug-panel.collapsed {
6         background-color: transparent;
7         overflow-x: hidden;
8 }
9
10 #debug-panel.expanded {
11         background-color: lightyellow;
12         max-width: 25%;
13         overflow-x: scroll;
14 }
15
16 #debug-panel.collapsed > #debug-panel-collapse {
17         display: none;
18 }
19
20 #debug-panel.expanded > #debug-panel-collapse {
21         display: block;
22 }
23
24 #debug-panel.collapsed > #debug-panel-expand {
25         display: block;
26 }
27
28 #debug-panel.expanded > #debug-panel-expand {
29         display: none;
30 }
31
32 #debug-panel.expanded > #debug-panel-content {
33         display: block;
34 }
35
36 #debug-panel.collapsed > #debug-panel-content {
37         display: none;
38 }
39
40 .json-key {
41         color: cornflowerblue;
42         font-weight: bold;
43 }
44
45 .json-string {
46         color: crimson;
47 }
48
49 .json-number {
50         color: sandybrown;
51 }
52
53 .json-boolean {
54         color: fuchsia;
55         font-weight: bold;
56 }
57
58 .json-null {
59         color: black;
60         font-weight: bold;
61 }