panelUI.css (1412B)
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 @import "chrome://browser/skin/customizableui/panelUI-shared.css"; 6 7 .panel-subview-body { 8 scrollbar-color: color-mix(in srgb, currentColor 26%, transparent) transparent; 9 } 10 11 .subviewbutton:not([image], [targetURI], .bookmark-item) > .menu-icon { 12 display: none; 13 } 14 15 .PanelUI-fxa-menu-section-title, 16 .PanelUI-remotetabs-clientcontainer > label[itemtype="client"] { 17 padding-inline-start: 10px; 18 } 19 20 .PanelUI-remotetabs-notabsforclient-label { 21 margin-inline-start: 19px; 22 font-size: 13px; 23 padding: 4px 0; 24 } 25 26 #PanelUI-remotetabs[mainview] .PanelUI-remotetabs-notabsforclient-label { 27 margin-inline-start: 23px; 28 } 29 30 #PanelUI-remotetabs-tabslist { 31 padding-bottom: 4px; 32 } 33 34 .panel-button { 35 appearance: none; 36 border-radius: var(--border-radius-xsmall); 37 color: var(--button-text-color); 38 background-color: var(--button-background-color); 39 padding: 2px 6px; 40 41 &:not([disabled]):hover { 42 color: var(--button-text-color-hover); 43 background-color: var(--button-background-color-hover); 44 } 45 46 &:not([disabled]):hover:active { 47 color: var(--button-text-color-active); 48 background-color: var(--button-background-color-active); 49 } 50 51 &:focus-visible { 52 outline: var(--focus-outline); 53 } 54 }