dialog.css (823B)
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 file, 3 - You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 window, 6 dialog { 7 appearance: none; 8 background-color: var(--background-color-canvas); 9 color: var(--text-color); 10 margin: 0; 11 padding: 0; 12 } 13 14 /* Add some padding around the contents of the dialog */ 15 dialog { 16 padding: 6px; 17 } 18 19 .contentPane, 20 dialog::part(content-box) { 21 flex: 1; 22 /* This allows the focus ring to display fully when scrolling is enabled. */ 23 padding: 4px; 24 } 25 26 .contentPane.doScroll, 27 dialog.doScroll::part(content-box) { 28 overflow-y: auto; 29 contain: size; 30 } 31 32 tree:not(#rejectsTree) { 33 min-height: 15em; 34 } 35 36 .actionButtons { 37 margin: 3px 0 0; 38 } 39 40 menulist label { 41 font-weight: unset; 42 }