blob: 68bd0bfcdd73134dd15bee5704dbc149f5e09478 (
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
|
/* 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);
}
.command-bar .filler {
flex-grow: 1;
}
.command-bar .step-position {
color: var(--theme-text-color-inactive);
padding-top: 8px;
margin-inline-end: 4px;
}
.command-bar .divider {
width: 1px;
background: var(--theme-splitter-color);
height: 10px;
margin: 11px 6px 0 6px;
}
|