blob: e28c89df71c6b0a1d189b609a79238e4b09eee2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
@import url("chrome://global/skin/in-content/common.css");
#addon-page {
font-size: 1.1em;
}
#addon-scrollbox {
overflow: auto;
-moz-box-orient: vertical;
-moz-box-flex: 1;
}
#spacer-start {
-moz-box-flex: 1;
}
#spacer-end {
-moz-box-flex: 3;
}
#addon-container {
overflow: visible;
max-width: 800px;
margin: 20px;
padding: 30px 90px;
}
#addon-info {
-moz-box-align: start;
margin: 25px 10px;
}
#icon {
margin-top: 8px;
margin-inline-end: 10px;
max-width: 64px;
max-height: 64px;
list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.svg");
}
.addon-info[type="theme"] #icon {
list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
}
.addon-info[type="locale"] #icon {
list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
}
.addon-info[type="plugin"] #icon {
list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
}
.addon-info[type="dictionary"] #icon {
list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric.png");
}
#name {
font-size: 130%;
}
#author {
color: GrayText;
}
#location {
color: GrayText;
}
#warning {
margin-bottom: 25px;
-moz-box-align: start;
}
#warning-icon {
list-style-image: url("chrome://mozapps/skin/extensions/alerticon-warning.svg");
width: 16px;
height: 16px;
margin-top: 5px;
margin-inline-end: 5px;
}
#allow {
margin-inline-start: 84px;
margin-bottom: 20px;
}
#buttonDeck {
margin-top: 25px;
-moz-box-align: stretch;
-moz-box-pack: stretch;
}
#continuePanel {
-moz-box-pack: end;
-moz-box-align: end;
}
#restartPanel {
-moz-box-pack: end;
-moz-box-align: stretch;
}
#restartPanelButtons {
margin-top: 25px;
-moz-box-pack: end;
}
#later {
color: GrayText;
}
|