~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/themes/classic/global/unix/global.css

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ***** BEGIN LICENSE BLOCK *****
 
2
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
3
 *
 
4
 * The contents of this file are subject to the Mozilla Public License Version
 
5
 * 1.1 (the "License"); you may not use this file except in compliance with
 
6
 * the License. You may obtain a copy of the License at
 
7
 * http://www.mozilla.org/MPL/
 
8
 *
 
9
 * Software distributed under the License is distributed on an "AS IS" basis,
 
10
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
11
 * for the specific language governing rights and limitations under the
 
12
 * License.
 
13
 *
 
14
 * The Original Code is Mozilla Communicator client code, released
 
15
 * March 31, 1998.
 
16
 *
 
17
 * The Initial Developer of the Original Code is
 
18
 * Netscape Communications Corporation.
 
19
 * Portions created by the Initial Developer are Copyright (C) 1998-1999
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 * Alternatively, the contents of this file may be used under the terms of
 
25
 * either of the GNU General Public License Version 2 or later (the "GPL"),
 
26
 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
27
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
28
 * of those above. If you wish to allow use of your version of this file only
 
29
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
30
 * use your version of this file under the terms of the MPL, indicate your
 
31
 * decision by deleting the provisions above and replace them with the notice
 
32
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
33
 * the provisions above, a recipient may use your version of this file under
 
34
 * the terms of any one of the MPL, the GPL or the LGPL.
 
35
 *
 
36
 * ***** END LICENSE BLOCK ***** */
 
37
 
 
38
/* ===== global.css =====================================================
 
39
  == Styles that apply everywhere.
 
40
  ======================================================================= */
 
41
 
 
42
/* all localizable skin settings shall live here */
 
43
@import url("chrome://global/locale/intl.css");
 
44
 
 
45
@import url("chrome://global/skin/formatting.css");
 
46
 
 
47
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
 
48
 
 
49
/* ::::: XBL bindings ::::: */
 
50
 
 
51
checkbox {
 
52
  -moz-binding: url("chrome://global/content/bindings/checkbox.xml#checkbox-with-spacing");
 
53
}
 
54
 
 
55
radio {
 
56
  -moz-binding: url("chrome://global/skin/globalBindings.xml#radio-with-spacing");
 
57
}
 
58
 
 
59
menulist > menupopup,
 
60
.menulist-menupopup {
 
61
  -moz-binding: url("chrome://global/content/bindings/popup.xml#popup-scrollbars");
 
62
}
 
63
 
 
64
.menulist-compact {
 
65
  -moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist-compact");
 
66
}
 
67
 
 
68
/* ::::: root elements ::::: */
 
69
 
 
70
window,
 
71
page,
 
72
dialog,
 
73
wizard { 
 
74
  -moz-appearance: window;
 
75
  background-color: -moz-Dialog;
 
76
  color: -moz-DialogText;
 
77
  font: message-box;
 
78
}
 
79
 
 
80
/* deprecated */
 
81
window.dialog { 
 
82
  padding: 8px 10px 10px 8px;
 
83
}
 
84
 
 
85
[wait-cursor] { 
 
86
  cursor: wait !important; 
 
87
}
 
88
 
 
89
/* ::::: alert icons :::::*/
 
90
 
 
91
.message-icon,
 
92
.alert-icon,
 
93
.error-icon,
 
94
.question-icon {
 
95
  width: 32px;
 
96
  height: 32px;
 
97
}
 
98
 
 
99
.message-icon {
 
100
  list-style-image: url("chrome://global/skin/icons/alert-message.gif");
 
101
}
 
102
 
 
103
.alert-icon {
 
104
  list-style-image: url("chrome://global/skin/icons/alert-exclam.gif");
 
105
}
 
106
 
 
107
.error-icon {
 
108
  list-style-image: url("chrome://global/skin/icons/alert-error.gif");
 
109
}
 
110
 
 
111
.question-icon {
 
112
  list-style-image: url("chrome://global/skin/icons/alert-question.gif");
 
113
}
 
114
 
 
115
/* ::::: iframe ::::: */
 
116
 
 
117
iframe {
 
118
  border: none;
 
119
  width: 100px;
 
120
  height: 100px;
 
121
  min-width: 10px;
 
122
  min-height: 10px;
 
123
}
 
124
 
 
125
/* ::::: statusbar ::::: */
 
126
 
 
127
statusbar {
 
128
  -moz-appearance: statusbar;
 
129
  border-top: 1px solid ThreeDLightShadow;
 
130
  border-left: 1px solid ThreeDShadow;
 
131
  border-right: 1px solid ThreeDHighlight;
 
132
  border-bottom: 1px solid ThreeDHighlight;
 
133
  background-color: -moz-Dialog;
 
134
}
 
135
 
 
136
statusbarpanel {
 
137
  -moz-appearance: statusbarpanel;
 
138
  -moz-box-align: center;
 
139
  -moz-box-pack: center;
 
140
  border-left: 1px solid ThreeDHighlight;
 
141
  border-top: 1px solid ThreeDHighlight;
 
142
  border-right: 1px solid ThreeDShadow;
 
143
  border-bottom: 1px solid ThreeDShadow;
 
144
  padding: 0 4px;
 
145
}
 
146
 
 
147
.statusbar-resizerpanel {
 
148
  -moz-box-align: end;
 
149
  -moz-box-pack: end;
 
150
  -moz-appearance: resizerpanel;
 
151
  padding: 0px;
 
152
}
 
153
 
 
154
.statusbarpanel-iconic {
 
155
  padding: 0px;
 
156
}
 
157
 
 
158
resizer[dir="bottomright"] {
 
159
  -moz-appearance: resizer;
 
160
  cursor: se-resize;
 
161
}
 
162
 
 
163
/* ::::: miscellaneous ::::: */
 
164
 
 
165
.toolbar-focustarget {
 
166
  -moz-user-focus: ignore !important;
 
167
}