- CSS Rules - Background colors of tabs - Background color of tab buttons - borders of tabs / buttons - Variable-izing backgrounds and colors - netmonitor: cell header color, sorted cell header color - widgets: cell header color, sorted cell header color - Toolbar Buttons - Fixing breadcrumbs in HTML inspector - JSON View tabs MozReview-Commit-ID: JqUG5zwvQ0a
44 lines
1.1 KiB
CSS
44 lines
1.1 KiB
CSS
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* 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/. */
|
|
|
|
/******************************************************************************/
|
|
/* Toolbar */
|
|
|
|
.toolbar {
|
|
display: flex;
|
|
height: 22px;
|
|
font: message-box;
|
|
padding: 1px;
|
|
padding-inline-start: 2px;
|
|
background: var(--theme-toolbar-background);
|
|
border-bottom: 1px solid var(--theme-splitter-color);
|
|
}
|
|
|
|
.toolbar .btn {
|
|
margin-inline-start: 5px;
|
|
color: var(--theme-body-color);
|
|
background: var(--toolbarbutton-background);
|
|
border: var(--toolbarbutton-border);
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
-moz-user-select: none;
|
|
padding: 0 2px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.toolbar .btn:hover {
|
|
background: var(--toolbarbutton-hover-background);
|
|
border: var(--toolbarbutton-hover-border);
|
|
}
|
|
|
|
.toolbar .btn:not([disabled]):hover:active {
|
|
background-color: var(--theme-selection-background-semitransparent);
|
|
}
|
|
|