forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooter.css
More file actions
104 lines (88 loc) · 2.29 KB
/
Footer.css
File metadata and controls
104 lines (88 loc) · 2.29 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
99
100
101
102
103
104
/* 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/>. */
.source-footer {
background: var(--theme-body-background);
border-top: 1px solid var(--theme-splitter-color);
position: absolute;
display: flex;
bottom: 0;
left: 0;
right: 0;
opacity: 1;
z-index: 1;
-moz-user-select: none;
user-select: none;
height: var(--editor-footer-height);
box-sizing: border-box;
}
.source-footer .commands {
display: flex;
align-items: center;
}
.source-footer .commands * {
-moz-user-select: none;
user-select: none;
}
.source-footer > .commands > .action {
display: flex;
justify-content: center;
align-items: center;
transition: opacity 200ms;
border: none;
background: transparent;
padding: 6px;
}
.source-footer > .commands > .action img {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.source-footer > .commands > button.action:hover {
background: var(--theme-toolbar-background-hover);
}
:root.theme-dark .source-footer > .commands > .action {
fill: var(--theme-body-color);
}
:root.theme-dark .source-footer > .commands > .action:hover {
fill: var(--theme-selection-color);
}
.source-footer > .commands > div.loader {
vertical-align: top;
width: 20px;
margin: 0 4px;
}
.source-footer > .commands > .action > img.prettyPrint {
mask: url(/images/prettyPrint.svg) no-repeat;
height: 16px;
width: 16px;
background: var(--theme-body-color);
}
.source-footer > .commands > .action > img.blackBox {
mask: url(/images/blackBox.svg) no-repeat;
height: 16px;
width: 16px;
background: var(--theme-body-color);
}
.source-footer .commands .coverage {
color: var(--theme-body-color);
}
.coverage-on .source-footer .commands .coverage {
color: var(--theme-highlight-blue);
border: 1px solid var(--theme-body-color-inactive);
border-radius: 2px;
}
.source-footer > .commands > .blackboxed > img.blackBox {
background: var(--theme-highlight-blue);
}
.source-footer .blackbox-summary,
.source-footer .mapped-source {
color: var(--theme-body-color);
padding-left: 2.5px;
}
.source-footer .mapped-source {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}