aboutSupport.css (2102B)
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 html { 6 --aboutSupport-table-background: #181411; 7 background-color: var(--in-content-page-background); 8 } 9 10 body { 11 margin: 40px 48px; 12 } 13 14 .page-subtitle { 15 margin-bottom: 3em; 16 } 17 18 .major-section { 19 margin-top: 2em; 20 margin-bottom: 1em; 21 font-size: large; 22 text-align: start; 23 font-weight: bold; 24 } 25 26 button { 27 margin-inline-start: 0; 28 margin-inline-end: 8px; 29 } 30 31 table { 32 background-color: var(--aboutSupport-table-background); 33 color: var(--in-content-text-color); 34 font: message-box; 35 text-align: start; 36 width: 100%; 37 border: 1px solid var(--in-content-border-color); 38 border-spacing: 0px; 39 } 40 41 th, td { 42 border: 1px solid var(--in-content-border-color); 43 padding: 4px; 44 } 45 46 thead th { 47 text-align: center; 48 } 49 50 th { 51 text-align: start; 52 background-color: var(--in-content-table-header-background); 53 color: var(--in-content-selected-text); 54 } 55 56 th.title-column { 57 white-space: nowrap; 58 width: 0px; 59 font-size: medium; 60 } 61 62 th.column { 63 white-space: nowrap; 64 width: 0px; 65 } 66 67 td { 68 text-align: start; 69 border-color: var(--in-content-table-border-dark-color); 70 } 71 72 .prefs-table { 73 width: 100%; 74 table-layout: fixed; 75 } 76 77 .pref-name { 78 width: 70%; 79 white-space: nowrap; 80 overflow: hidden; 81 } 82 83 .pref-value { 84 width: 30%; 85 white-space: nowrap; 86 overflow: hidden; 87 } 88 89 #action-box { 90 background-color: var(--aboutSupport-table-background); 91 border: 1px solid var(--in-content-border-color); 92 color: var(--in-content-text-color); 93 float: right; 94 margin-top: 2em; 95 margin-bottom: 20px; 96 margin-inline-start: 20px; 97 margin-inline-end: 0; 98 padding: 16px; 99 width: 30%; 100 } 101 102 #action-box, 103 #reset-box, 104 #safe-mode-box { 105 display: none; 106 } 107 108 #action-box:dir(rtl) { 109 float: left; 110 } 111 112 #reset-box > h3 { 113 margin-top: 0; 114 } 115 116 #action-box button { 117 display: block; 118 } 119 120 #verify-place-result { 121 max-height: 200px; 122 overflow: auto; 123 } 124 125 .block { 126 display: block; 127 } 128 129 .hidden { 130 display: none; 131 }