blob: da6bae2595d1c980cc5f54f4a479d849332a8ffd (
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
|
/* 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/. */
#xpinstallheader {
margin-bottom: 2em;
}
#itemList {
-moz-appearance: listbox;
margin: 3px 4px 10px 4px;
height: 14em;
border: 2px solid;
-moz-border-top-colors: ThreeDShadow ThreeDDarkShadow;
-moz-border-right-colors: ThreeDHighlight ThreeDLightShadow;
-moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow;
-moz-border-left-colors: ThreeDShadow ThreeDDarkShadow;
background-color: -moz-Field;
color: -moz-FieldText;
}
#itemWarningIntro {
-moz-margin-start: 8px;
}
#dialogContentBox {
padding: 5px;
}
installitem {
padding-top: 5px;
padding-bottom: 5px;
-moz-padding-start: 5px;
-moz-padding-end: 0;
border-bottom: 1px dotted #C0C0C0;
margin-bottom: 5px;
}
.alert-icon {
-moz-margin-end: 20px;
}
.warning {
font-weight: bold;
font-size: 1.25em;
margin-bottom: 1em;
}
.xpinstallIconContainer {
width: 32px;
height: 32px;
-moz-margin-end: 5px;
}
.xpinstallItemName {
font-weight: bold;
}
.xpinstallItemSigned {
font-style: italic;
font-size: 0.9em;
}
.xpinstallItemURL {
-moz-appearance: none;
border: none;
padding: 0;
background-color: -moz-Field;
color: -moz-FieldText;
margin-top: 1px;
margin-bottom: 1px;
-moz-margin-start: 6px;
-moz-margin-end: 5px;
}
.xpinstallItemIcon {
max-width: 32px;
max-height: 32px;
list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
}
installitem[type="theme"] .xpinstallItemIcon {
list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
}
installitem[type="locale"] .xpinstallItemIcon {
list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
}
installitem[type="plugin"] .xpinstallItemIcon {
list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
}
installitem[type="dictionary"] .xpinstallItemIcon {
list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric.png");
}
|