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 120px; |
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 #D6E5F5; |
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 label { |
michael@0 | 57 | margin-top: 0; |
michael@0 | 58 | margin-bottom: 0; |
michael@0 | 59 | } |
michael@0 | 60 | |
michael@0 | 61 | .select-cell { |
michael@0 | 62 | -moz-box-align: center; |
michael@0 | 63 | -moz-box-pack: start; |
michael@0 | 64 | } |
michael@0 | 65 | |
michael@0 | 66 | #select-header .select-cell { |
michael@0 | 67 | box-sizing: border-box; |
michael@0 | 68 | } |
michael@0 | 69 | |
michael@0 | 70 | #select-header .select-keep, |
michael@0 | 71 | #select-header .select-icon, |
michael@0 | 72 | #select-header .select-name, |
michael@0 | 73 | #select-header .select-action { |
michael@0 | 74 | background-image: linear-gradient(#D6E5F5 0%, Window 100%); |
michael@0 | 75 | background-size: 1px 100%; |
michael@0 | 76 | background-position: right; |
michael@0 | 77 | background-repeat: no-repeat; |
michael@0 | 78 | } |
michael@0 | 79 | |
michael@0 | 80 | .select-keep { |
michael@0 | 81 | -moz-box-pack: center; |
michael@0 | 82 | } |
michael@0 | 83 | |
michael@0 | 84 | .select-icon { |
michael@0 | 85 | width: 20px; |
michael@0 | 86 | } |
michael@0 | 87 | |
michael@0 | 88 | .select-keep .addon-keep-checkbox { |
michael@0 | 89 | margin: 0; |
michael@0 | 90 | padding: 0; |
michael@0 | 91 | width: 13px; |
michael@0 | 92 | } |
michael@0 | 93 | |
michael@0 | 94 | .select-keep .addon-keep-checkbox:-moz-focusring { |
michael@0 | 95 | outline: 1px dotted ThreeDDarkShadow; |
michael@0 | 96 | } |
michael@0 | 97 | |
michael@0 | 98 | .select-keep .checkbox-label-box { |
michael@0 | 99 | display: none; |
michael@0 | 100 | } |
michael@0 | 101 | |
michael@0 | 102 | .addon-name, |
michael@0 | 103 | .addon-action-message, |
michael@0 | 104 | .addon-action-update { |
michael@0 | 105 | box-sizing: border-box; |
michael@0 | 106 | margin: 0; |
michael@0 | 107 | padding-top: 1px; |
michael@0 | 108 | padding-bottom: 2px; |
michael@0 | 109 | -moz-padding-start: 6px; |
michael@0 | 110 | -moz-padding-end: 5px; |
michael@0 | 111 | } |
michael@0 | 112 | |
michael@0 | 113 | #select-grid separator { |
michael@0 | 114 | border-top: 1px solid #D6E5F5; |
michael@0 | 115 | height: 0; |
michael@0 | 116 | margin-top: 0.4em; |
michael@0 | 117 | margin-bottom: 0.4em; |
michael@0 | 118 | } |
michael@0 | 119 | |
michael@0 | 120 | .addon:not([active]) .addon-name, |
michael@0 | 121 | .addon:not([active]) .addon-action-message, |
michael@0 | 122 | .addon:not([active]) .addon-action-update { |
michael@0 | 123 | color: GrayText; |
michael@0 | 124 | } |
michael@0 | 125 | |
michael@0 | 126 | .addon-icon { |
michael@0 | 127 | height: 16px; |
michael@0 | 128 | width: 16px; |
michael@0 | 129 | list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric-16.png"); |
michael@0 | 130 | } |
michael@0 | 131 | |
michael@0 | 132 | .addon-icon[type="theme"] { |
michael@0 | 133 | list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric-16.png"); |
michael@0 | 134 | } |
michael@0 | 135 | |
michael@0 | 136 | .addon-icon[type="plugin"] { |
michael@0 | 137 | list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric-16.png"); |
michael@0 | 138 | } |
michael@0 | 139 | |
michael@0 | 140 | .addon-icon[type="dictionary"] { |
michael@0 | 141 | list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric-16.png"); |
michael@0 | 142 | } |
michael@0 | 143 | |
michael@0 | 144 | .action-list { |
michael@0 | 145 | margin-top: 10px; |
michael@0 | 146 | -moz-margin-start: 5em; |
michael@0 | 147 | } |
michael@0 | 148 | |
michael@0 | 149 | .action-header { |
michael@0 | 150 | margin-bottom: 10px; |
michael@0 | 151 | } |
michael@0 | 152 | |
michael@0 | 153 | #confirm .addon { |
michael@0 | 154 | -moz-margin-start: 3em; |
michael@0 | 155 | -moz-box-align: center; |
michael@0 | 156 | } |
michael@0 | 157 | |
michael@0 | 158 | .addon:not([active]) .addon-icon, |
michael@0 | 159 | #disable-list .addon-icon, |
michael@0 | 160 | #incompatible-list .addon-icon { |
michael@0 | 161 | filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale"); |
michael@0 | 162 | } |
michael@0 | 163 | |
michael@0 | 164 | #footer { |
michael@0 | 165 | padding: 15px 12px; |
michael@0 | 166 | } |
michael@0 | 167 | |
michael@0 | 168 | .progress-label, |
michael@0 | 169 | #footer-label { |
michael@0 | 170 | %ifdef WINDOWS_AERO |
michael@0 | 171 | font-style: italic; |
michael@0 | 172 | %endif |
michael@0 | 173 | color: GrayText; |
michael@0 | 174 | } |
michael@0 | 175 | |
michael@0 | 176 | %ifdef WINDOWS_AERO |
michael@0 | 177 | @media (-moz-windows-default-theme) { |
michael@0 | 178 | #footer { |
michael@0 | 179 | background-color: #f1f5fb; |
michael@0 | 180 | box-shadow: 0px 1px 2px rgb(204,214,234) inset; |
michael@0 | 181 | } |
michael@0 | 182 | } |
michael@0 | 183 | %endif |