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 %include ../../global/shared.inc
7 @import url("chrome://global/skin/inContentUI.css");
9 #addon-page {
10 padding: 0;
11 }
13 #addon-scrollbox {
14 overflow: auto;
15 -moz-box-orient: vertical;
16 -moz-box-flex: 1;
17 }
19 #spacer-start {
20 -moz-box-flex: 1;
21 }
23 #spacer-end {
24 -moz-box-flex: 3;
25 }
27 #addon-container {
28 overflow: visible;
29 max-width: 600px;
30 margin: 20px;
31 padding: 30px 90px;
32 }
34 #addon-info {
35 -moz-box-align: start;
36 margin: 25px 10px;
37 }
39 #icon {
40 -moz-margin-end: 10px;
41 max-width: 64px;
42 max-height: 64px;
43 list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
44 }
46 .addon-info[type="theme"] #icon {
47 list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
48 }
50 .addon-info[type="locale"] #icon {
51 list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
52 }
54 .addon-info[type="plugin"] #icon {
55 list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
56 }
58 .addon-info[type="dictionary"] #icon {
59 list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric.png");
60 }
62 #name {
63 font-size: 130%;
64 }
66 #author {
67 color: GrayText;
68 }
70 #location {
71 color: GrayText;
72 }
74 #warning {
75 margin-bottom: 25px;
76 -moz-box-align: start;
77 }
79 #warning-icon {
80 list-style-image: url("chrome://mozapps/skin/extensions/alerticon-warning.png");
81 width: 16px;
82 height: 15px;
83 -moz-margin-end: 5px;
84 }
86 #allow {
87 -moz-margin-start: 84px;
88 margin-bottom: 20px;
89 }
91 #continuePanel,
92 #restartPanel {
93 margin-top: 25px;
94 -moz-box-align: center;
95 -moz-box-pack: end;
96 }
98 #continuePanel {
99 -moz-box-pack: end;
100 }
102 #restartMessage {
103 text-align: right;
104 }
106 #restartSpacer {
107 -moz-box-flex: 1;
108 }
110 #later {
111 color: GrayText;
112 }