Commit | Line | Data |
---|---|---|
9099c61d RK |
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/. */ | |
154ee8b3 RK |
4 | |
5 | @import url("chrome://global/skin/inContentUI.css"); | |
6 | ||
7 | #addon-page { | |
8 | padding: 0; | |
9 | } | |
10 | ||
11 | #addon-scrollbox { | |
12 | overflow: auto; | |
13 | -moz-box-orient: vertical; | |
14 | -moz-box-flex: 1; | |
15 | } | |
16 | ||
17 | #spacer-start { | |
18 | -moz-box-flex: 1; | |
19 | } | |
20 | ||
21 | #spacer-end { | |
22 | -moz-box-flex: 3; | |
23 | } | |
24 | ||
25 | #addon-container { | |
24547055 | 26 | overflow: visible; /* bug 761489 */ |
154ee8b3 RK |
27 | max-width: 600px; |
28 | margin: 20px; | |
29 | padding: 30px 90px; | |
30 | } | |
31 | ||
32 | #addon-info { | |
33 | -moz-box-align: start; | |
34 | margin: 25px 10px; | |
35 | } | |
36 | ||
37 | #icon { | |
38 | -moz-margin-end: 10px; | |
39 | list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png"); | |
40 | } | |
41 | ||
42 | .addon-info[type="theme"] #icon { | |
43 | list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png"); | |
44 | } | |
45 | ||
46 | .addon-info[type="locale"] #icon { | |
47 | list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png"); | |
48 | } | |
49 | ||
50 | .addon-info[type="plugin"] #icon { | |
51 | list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png"); | |
52 | } | |
53 | ||
1e29db46 | 54 | .addon-info[type="dictionary"] #icon { |
24547055 | 55 | list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric.png"); |
1e29db46 RK |
56 | } |
57 | ||
154ee8b3 RK |
58 | #name { |
59 | font-size: 130%; | |
60 | } | |
61 | ||
62 | #author { | |
63 | color: #808080; | |
64 | } | |
65 | ||
66 | #location { | |
67 | color: #808080; | |
68 | } | |
69 | ||
70 | #warning { | |
71 | margin-bottom: 25px; | |
72 | -moz-box-align: start; | |
73 | } | |
74 | ||
75 | #warning-icon { | |
76 | list-style-image: url("chrome://global/skin/icons/alert-exclam.gif"); | |
77 | width: 16px; | |
78 | height: 15px; | |
79 | -moz-margin-end: 5px; | |
80 | } | |
81 | ||
82 | #allow { | |
83 | -moz-margin-start: 84px; | |
84 | margin-bottom: 20px; | |
85 | } | |
86 | ||
87 | #continuePanel, | |
88 | #restartPanel { | |
89 | margin-top: 25px; | |
90 | -moz-box-pack: end; | |
91 | -moz-box-align: center; | |
92 | } | |
93 | ||
94 | #continuePanel { | |
95 | -moz-box-pack: end; | |
96 | } | |
97 | ||
98 | #restartMessage { | |
99 | text-align: right; | |
100 | } | |
101 | ||
102 | #restartSpacer { | |
103 | -moz-box-flex: 1; | |
104 | } | |
105 | ||
106 | #later { | |
107 | color: #808080; | |
108 | } |