forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandBar.css
More file actions
139 lines (114 loc) · 2.65 KB
/
Copy pathCommandBar.css
File metadata and controls
139 lines (114 loc) · 2.65 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* 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/>. */
.command-bar {
flex: 0 0 29px;
border-bottom: 1px solid var(--theme-splitter-color);
display: flex;
overflow: hidden;
z-index: 1;
background-color: var(--theme-toolbar-background);
}
html[dir="rtl"] .command-bar {
border-right: 1px solid var(--theme-splitter-color);
}
.theme-dark .command-bar {
background-color: var(--theme-toolbar-background);
}
img.pause,
img.stepOver,
img.stepIn,
img.stepOut,
img.resume,
img.rewind,
img.reverseStepOver,
img.reverseStepIn,
img.reverseStepOut,
img.replay-previous,
img.replay-next,
img.resume,
img.shortcuts,
img.skipPausing {
background-color: var(--theme-body-color);
}
.command-bar img.pause {
mask: url(/images/pause.svg) no-repeat;
}
.command-bar img.stepOver {
mask: url(/images/stepOver.svg) no-repeat;
}
.command-bar img.stepIn {
mask: url(/images/stepIn.svg) no-repeat;
}
.command-bar img.stepOut {
mask: url(/images/stepOut.svg) no-repeat;
}
.command-bar img.resume {
mask: url(/images/resume.svg) no-repeat;
}
.command-bar img.rewind {
mask: url(/images/resume.svg) no-repeat;
transform: scaleX(-1);
}
.command-bar img.reverseStepOver {
mask: url(/images/stepOver.svg) no-repeat;
transform: scaleX(-1);
}
.command-bar img.reverseStepIn {
mask: url(/images/stepIn.svg) no-repeat;
transform: scaleX(-1);
}
.command-bar img.reverseStepOut {
mask: url(/images/stepOut.svg) no-repeat;
transform: scaleX(-1);
}
.command-bar .filler {
flex-grow: 1;
}
.command-bar img.shortcuts {
mask: url(/mc/help.svg) no-repeat;
mask-size: contain;
}
.command-bar .replay-inactive {
opacity: 0.5;
}
.command-bar .step-position {
color: var(--theme-comment-alt);
padding-top: 8px;
margin-inline-end: 4px;
}
.command-bar .replay-active {
color: var(--theme-highlight-blue);
}
.command-bar .subSettings {
float: right;
}
.command-bar .skipPausing {
mask: url(/images/disable-pausing.svg) no-repeat;
mask-size: 100%;
}
.command-bar .active .skipPausing {
background-color: var(--theme-highlight-blue);
}
.bottom {
border-bottom: none;
background-color: var(--theme-body-background);
border-top: 1px solid var(--theme-splitter-color);
flex: 0 0 25px;
}
.command-bar.bottom {
justify-content: flex-end;
}
.command-bar.bottom > button {
color: var(--theme-comment);
width: 26px;
}
.command-bar.bottom > button:hover {
color: var(--theme-body-color);
}
.command-bar .divider {
width: 1px;
background: var(--theme-splitter-color);
height: 10px;
margin: 11px 6px 0 6px;
}