Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #view-deck { |
michael@0 | 6 | background: Window; |
michael@0 | 7 | } |
michael@0 | 8 | |
michael@0 | 9 | .heading { |
michael@0 | 10 | font-size: 270%; |
michael@0 | 11 | text-align: center; |
michael@0 | 12 | margin: 0 100px; |
michael@0 | 13 | } |
michael@0 | 14 | |
michael@0 | 15 | .progress { |
michael@0 | 16 | margin: 10px 128px; |
michael@0 | 17 | } |
michael@0 | 18 | |
michael@0 | 19 | .progress-label, |
michael@0 | 20 | #errors-description { |
michael@0 | 21 | text-align: center; |
michael@0 | 22 | margin: 0 10px; |
michael@0 | 23 | } |
michael@0 | 24 | |
michael@0 | 25 | #checking-heading, |
michael@0 | 26 | #update-heading, |
michael@0 | 27 | #errors-heading { |
michael@0 | 28 | margin-top: 90px; |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | #select-heading, |
michael@0 | 32 | #confirm-heading { |
michael@0 | 33 | margin-top: 10px; |
michael@0 | 34 | margin-bottom: 10px; |
michael@0 | 35 | text-align: center; |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | #select-description, |
michael@0 | 39 | #confirm-description { |
michael@0 | 40 | margin: 10px; |
michael@0 | 41 | } |
michael@0 | 42 | |
michael@0 | 43 | #select-list { |
michael@0 | 44 | border-top: 1px solid WindowFrame; |
michael@0 | 45 | background-color: Window; |
michael@0 | 46 | } |
michael@0 | 47 | |
michael@0 | 48 | #select-grid column { |
michael@0 | 49 | -moz-box-align: center; |
michael@0 | 50 | } |
michael@0 | 51 | |
michael@0 | 52 | #select-grid row { |
michael@0 | 53 | -moz-box-align: stretch; |
michael@0 | 54 | } |
michael@0 | 55 | |
michael@0 | 56 | #select-grid row:nth-of-type(odd) { |
michael@0 | 57 | background-color: -moz-oddtreerow; |
michael@0 | 58 | } |
michael@0 | 59 | |
michael@0 | 60 | #select-grid label, |
michael@0 | 61 | #select-grid checkbox { |
michael@0 | 62 | margin-top: 0; |
michael@0 | 63 | margin-bottom: 0; |
michael@0 | 64 | } |
michael@0 | 65 | |
michael@0 | 66 | .select-cell { |
michael@0 | 67 | -moz-box-align: center; |
michael@0 | 68 | -moz-box-pack: start; |
michael@0 | 69 | } |
michael@0 | 70 | |
michael@0 | 71 | #select-header .select-cell { |
michael@0 | 72 | -moz-appearance: treeheadercell; |
michael@0 | 73 | box-sizing: border-box; |
michael@0 | 74 | } |
michael@0 | 75 | |
michael@0 | 76 | .select-keep { |
michael@0 | 77 | -moz-box-pack: center; |
michael@0 | 78 | } |
michael@0 | 79 | |
michael@0 | 80 | .select-keep .checkbox-label-box { |
michael@0 | 81 | display: none; |
michael@0 | 82 | } |
michael@0 | 83 | |
michael@0 | 84 | .select-keep .addon-keep-checkbox:-moz-focusring { |
michael@0 | 85 | outline: 1px dotted ThreeDDarkShadow; |
michael@0 | 86 | } |
michael@0 | 87 | |
michael@0 | 88 | .select-icon { |
michael@0 | 89 | width: 20px; |
michael@0 | 90 | } |
michael@0 | 91 | |
michael@0 | 92 | #select-grid separator { |
michael@0 | 93 | display: none; |
michael@0 | 94 | } |
michael@0 | 95 | |
michael@0 | 96 | .addon-name, |
michael@0 | 97 | .addon-action-message, |
michael@0 | 98 | .addon-action-update { |
michael@0 | 99 | box-sizing: border-box; |
michael@0 | 100 | margin: 0; |
michael@0 | 101 | padding-top: 1px; |
michael@0 | 102 | padding-bottom: 2px; |
michael@0 | 103 | -moz-padding-start: 6px; |
michael@0 | 104 | -moz-padding-end: 5px; |
michael@0 | 105 | } |
michael@0 | 106 | |
michael@0 | 107 | .addon:not([active]) .addon-name, |
michael@0 | 108 | .addon:not([active]) .addon-action-message, |
michael@0 | 109 | .addon:not([active]) .addon-action-update { |
michael@0 | 110 | color: GrayText; |
michael@0 | 111 | } |
michael@0 | 112 | |
michael@0 | 113 | .addon-icon { |
michael@0 | 114 | height: 16px; |
michael@0 | 115 | width: 16px; |
michael@0 | 116 | margin: 2px; |
michael@0 | 117 | list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric-16.png"); |
michael@0 | 118 | } |
michael@0 | 119 | |
michael@0 | 120 | .addon-icon[type="theme"] { |
michael@0 | 121 | list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric-16.png"); |
michael@0 | 122 | } |
michael@0 | 123 | |
michael@0 | 124 | .addon-icon[type="plugin"] { |
michael@0 | 125 | list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric-16.png"); |
michael@0 | 126 | } |
michael@0 | 127 | |
michael@0 | 128 | .addon-icon[type="dictionary"] { |
michael@0 | 129 | list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric-16.png"); |
michael@0 | 130 | } |
michael@0 | 131 | |
michael@0 | 132 | .action-list { |
michael@0 | 133 | margin-top: 10px; |
michael@0 | 134 | -moz-margin-start: 5em; |
michael@0 | 135 | } |
michael@0 | 136 | |
michael@0 | 137 | .action-header { |
michael@0 | 138 | margin-bottom: 10px; |
michael@0 | 139 | } |
michael@0 | 140 | |
michael@0 | 141 | #confirm .addon { |
michael@0 | 142 | -moz-margin-start: 3em; |
michael@0 | 143 | -moz-box-align: center; |
michael@0 | 144 | } |
michael@0 | 145 | |
michael@0 | 146 | .addon:not([active]) .addon-icon, |
michael@0 | 147 | #disable-list .addon-icon, |
michael@0 | 148 | #incompatible-list .addon-icon { |
michael@0 | 149 | filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale"); |
michael@0 | 150 | } |
michael@0 | 151 | |
michael@0 | 152 | #footer { |
michael@0 | 153 | padding: 15px 12px; |
michael@0 | 154 | border-top: 2px solid; |
michael@0 | 155 | -moz-border-top-colors: ThreeDHighlight ThreeDLightShadow; |
michael@0 | 156 | } |
michael@0 | 157 | |
michael@0 | 158 | .progress-label, |
michael@0 | 159 | #footer-label { |
michael@0 | 160 | font-style: italic; |
michael@0 | 161 | color: GrayText; |
michael@0 | 162 | } |