CommandBar.css (660B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */ 4 5 .command-bar { 6 flex: 0 0 29px; 7 border-bottom: 1px solid var(--theme-splitter-color); 8 display: flex; 9 overflow: hidden; 10 z-index: 1; 11 background-color: var(--theme-toolbar-background); 12 } 13 14 html[dir="rtl"] .command-bar { 15 border-right: 1px solid var(--theme-splitter-color); 16 } 17 18 .command-bar .filler { 19 flex-grow: 1; 20 } 21 22 .command-bar .divider { 23 width: 1px; 24 background: var(--theme-splitter-color); 25 height: 10px; 26 margin: 11px 6px 0 6px; 27 }