aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/identity/binding-debug.css
blob: f41c940f110c0ff162b92cd095614b691ba93e9b (plain)
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
#debug-panel {
	float: right;
}

#debug-panel.collapsed {
	background-color: transparent;
	overflow-x: hidden;
}

#debug-panel.expanded {
	background-color: lightyellow;
	max-width: 25%;
	overflow-x: scroll;
}

#debug-panel.collapsed > #debug-panel-collapse {
	display: none;
}

#debug-panel.expanded > #debug-panel-collapse {
	display: block;
}

#debug-panel.collapsed > #debug-panel-expand {
	display: block;
}

#debug-panel.expanded > #debug-panel-expand {
	display: none;
}

#debug-panel.expanded > #debug-panel-content {
	display: block;
}

#debug-panel.collapsed > #debug-panel-content {
	display: none;
}

.json-key {
	color: cornflowerblue;
	font-weight: bold;
}

.json-string {
	color: crimson;
}

.json-number {
	color: sandybrown;
}

.json-boolean {
	color: fuchsia;
	font-weight: bold;
}

.json-null {
	color: black;
	font-weight: bold;
}