blob: 4194e877b248caaa60ea19929835b2c9217f9b32 (
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
|
/* 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/. */
/* ===== global.css =====================================================
== Styles that apply everywhere.
======================================================================= */
@import url("chrome://global/skin/global-shared.css");
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
@media (-moz-menubar-drag) {
xul|toolbar[type="menubar"] {
-moz-window-dragging: drag;
}
}
/* ::::: Alert icons :::::*/
.message-icon {
list-style-image: url("moz-icon://stock/gtk-dialog-info?size=dialog");
}
.alert-dialog #infoIcon,
.alert-icon {
list-style-image: url("moz-icon://stock/gtk-dialog-warning?size=dialog");
}
.error-icon {
list-style-image: url("moz-icon://stock/gtk-dialog-error?size=dialog");
}
.question-icon {
list-style-image: url("moz-icon://stock/gtk-dialog-question?size=dialog");
}
.authentication-icon {
list-style-image: url("chrome://global/skin/icons/Authentication.png");
}
/* XXX(ntim): [mode="text"] is only used by comm-central */
xul|toolbar[mode="text"] .toolbarbutton-text {
padding: 0 !important;
margin: 3px 5px !important;
}
/* Separators */
xul|separator:not([orient="vertical"]) {
height: 1.5em;
}
xul|separator[orient="vertical"] {
width: 1.5em;
}
xul|separator.thin:not([orient="vertical"]) {
height: 0.5em;
}
xul|separator.thin[orient="vertical"] {
width: 0.5em;
}
xul|separator.groove:not([orient="vertical"]) {
border-top: 1px solid ThreeDShadow;
border-bottom: 1px solid ThreeDHighlight;
height: 0;
margin-block: 0.4em;
}
xul|separator.groove[orient="vertical"] {
border-left: 1px solid ThreeDShadow;
border-right: 1px solid ThreeDHighlight;
width: 0;
margin-inline: 0.4em;
}
/* Other margins */
html|input {
margin: 2px 4px;
}
xul|notification > xul|hbox > xul|button {
margin-block: 0;
}
|