forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConsole.css
More file actions
98 lines (81 loc) · 1.79 KB
/
Copy pathConsole.css
File metadata and controls
98 lines (81 loc) · 1.79 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
main {
--default-border: 1px solid var(--theme-splitter-color);
height: 100vh;
display: flex;
flex-direction: column;
}
.expressions {
padding: 2em 1em;
flex: 1;
overflow-y: auto;
}
.rep-row {
border: var(--default-border);
margin-bottom: 1em;
}
.rep-input {
font-family: monospace;
background-color: var(--theme-toolbar-background-alt);
color: var(--theme-body-color);
padding: 0.5rem;
}
.rep-input::before {
content: "➜ ";
}
.reps {
display: flex;
flex-wrap: wrap;
padding: 1rem;
margin-bottom: 0.5rem;
}
.rep-element {
white-space: pre-wrap;
word-wrap: break-word;
}
.rep-element + .rep-element {
margin-left: 0.5rem;
}
.rep-element[data-mode]::before {
content: attr(data-mode) ":";
background-color: var(--theme-toolbar-background);
font-family: monospace;
display: inline-block;
font-size: 0.75rem;
padding: 0.1rem 0.25rem;
margin-right: 0.25rem;
border-radius: 0.25rem;
}
.packet header {
background-color: var(--theme-toolbar-background-alt);
border-top: var(--default-border);
color: var(--theme-body-color);
padding: 0.5rem;
}
.packet header::before {
display: inline-block;
padding-right: 0.5rem;
}
.packet header .copy-label {
margin: 0 0.5em;
padding-inline-start: 0.5em;
border-inline-start: 1px solid rgba(0, 0, 0, 0.2);
}
.packet header.packet-expanded::before {
content: "−";
}
.packet header.packet-collapsed::before {
content: "+";
}
.copy-packet-button {
margin-left: auto;
margin-right: 0.5rem;
}
.packet header + .packet-rep {
padding-top: 1rem;
}
.packet .packet-rep {
padding-inline-start: 1rem;
}