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.
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/. */
5 #view-deck {
6 background: Window;
7 }
9 .heading {
10 font-size: 270%;
11 text-align: center;
12 margin: 0 120px;
13 }
15 .progress {
16 margin: 10px 128px;
17 }
19 .progress-label,
20 #errors-description {
21 text-align: center;
22 margin: 0 10px;
23 }
25 #checking-heading,
26 #update-heading,
27 #errors-heading {
28 margin-top: 90px;
29 }
31 #select-heading,
32 #confirm-heading {
33 margin-top: 10px;
34 margin-bottom: 10px;
35 text-align: center;
36 }
38 #select-description,
39 #confirm-description {
40 margin: 10px;
41 }
43 #select-list {
44 border-top: 1px solid #D6E5F5;
45 background-color: Window;
46 }
48 #select-grid column {
49 -moz-box-align: center;
50 }
52 #select-grid row {
53 -moz-box-align: stretch;
54 }
56 #select-grid label {
57 margin-top: 0;
58 margin-bottom: 0;
59 }
61 .select-cell {
62 -moz-box-align: center;
63 -moz-box-pack: start;
64 }
66 #select-header .select-cell {
67 box-sizing: border-box;
68 }
70 #select-header .select-keep,
71 #select-header .select-icon,
72 #select-header .select-name,
73 #select-header .select-action {
74 background-image: linear-gradient(#D6E5F5 0%, Window 100%);
75 background-size: 1px 100%;
76 background-position: right;
77 background-repeat: no-repeat;
78 }
80 .select-keep {
81 -moz-box-pack: center;
82 }
84 .select-icon {
85 width: 20px;
86 }
88 .select-keep .addon-keep-checkbox {
89 margin: 0;
90 padding: 0;
91 width: 13px;
92 }
94 .select-keep .addon-keep-checkbox:-moz-focusring {
95 outline: 1px dotted ThreeDDarkShadow;
96 }
98 .select-keep .checkbox-label-box {
99 display: none;
100 }
102 .addon-name,
103 .addon-action-message,
104 .addon-action-update {
105 box-sizing: border-box;
106 margin: 0;
107 padding-top: 1px;
108 padding-bottom: 2px;
109 -moz-padding-start: 6px;
110 -moz-padding-end: 5px;
111 }
113 #select-grid separator {
114 border-top: 1px solid #D6E5F5;
115 height: 0;
116 margin-top: 0.4em;
117 margin-bottom: 0.4em;
118 }
120 .addon:not([active]) .addon-name,
121 .addon:not([active]) .addon-action-message,
122 .addon:not([active]) .addon-action-update {
123 color: GrayText;
124 }
126 .addon-icon {
127 height: 16px;
128 width: 16px;
129 list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric-16.png");
130 }
132 .addon-icon[type="theme"] {
133 list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric-16.png");
134 }
136 .addon-icon[type="plugin"] {
137 list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric-16.png");
138 }
140 .addon-icon[type="dictionary"] {
141 list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric-16.png");
142 }
144 .action-list {
145 margin-top: 10px;
146 -moz-margin-start: 5em;
147 }
149 .action-header {
150 margin-bottom: 10px;
151 }
153 #confirm .addon {
154 -moz-margin-start: 3em;
155 -moz-box-align: center;
156 }
158 .addon:not([active]) .addon-icon,
159 #disable-list .addon-icon,
160 #incompatible-list .addon-icon {
161 filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale");
162 }
164 #footer {
165 padding: 15px 12px;
166 }
168 .progress-label,
169 #footer-label {
170 %ifdef WINDOWS_AERO
171 font-style: italic;
172 %endif
173 color: GrayText;
174 }
176 %ifdef WINDOWS_AERO
177 @media (-moz-windows-default-theme) {
178 #footer {
179 background-color: #f1f5fb;
180 box-shadow: 0px 1px 2px rgb(204,214,234) inset;
181 }
182 }
183 %endif