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

« back to all changes in this revision

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