update EarlyBlue to recent changes
[themes.git] / EarlyBlue / editor / EditorDialog.css
CommitLineData
128000f4 1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
3 *
4 * The contents of this file are subject to the Netscape Public License
5 * Version 1.1 (the "License"); you may not use this file except in
6 * compliance with the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/NPL/
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.org code.
15 *
16 * The Initial Developer of the Original Code is
17 * Netscape Communications Corporation.
18 * Portions created by the Initial Developer are Copyright (C) 1998
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s):
f6e0a33f 22 * Pete Collins, Ben Goodger
128000f4 23 * Robert Kaiser <KaiRo@KaiRo.at>
24 *
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the NPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the NPL, the GPL or the LGPL.
36 *
37 * ***** END LICENSE BLOCK ***** */
38
39@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
f6e0a33f 40
41/* The defaults are WAY to big! */
42groupbox {
74d14f90 43 margin: 2px 5px /* 4px 5px */;
44 padding-top: 2px;
f6e0a33f 45 padding-bottom: 4px;
46}
47
48.MinWidth5em {
49 min-width: 5em;
50}
51
52.MinWidth10em {
53 min-width: 10em;
54}
55
74d14f90 56.MinWidth15em {
57 min-width: 15em;
58}
59
f6e0a33f 60.MinWidth20em {
61 min-width: 20em;
62}
63
64.big-left-margin {
74d14f90 65 margin-left: 10px;
f6e0a33f 66}
67
68.bold {
69 font-weight: bold;
70}
71
72.italic {
73 font-style: italic;
74}
75
76.larger {
77 font-size: 120%;
78}
79
f6e0a33f 80.narrow {
81 width: 3em;
82}
83
84.wrap {
85 width: 1em;
86}
87
88.menuitem-highlight-1 {
74d14f90 89 font-weight: bold;
f6e0a33f 90}
91
92/* Use this with groove-thin in dialogs
93 to add margins to top and bottom
94*/
95.tb-margin {
74d14f90 96 margin-top: 6px;
97 margin-bottom: 6px;
f6e0a33f 98}
99
100.color-well {
101 width: 20px;
102 height: 12px;
103 border: 1px inset #CCD0DD;
104}
105
106.color-well[default="true"] {
107 border: 1px solid transparent;
108 background-color: inherit;
109}
110
111.color-button {
112 /* override large default min-width */
113 min-width : 0px;
114 margin: 2px;
115}
116
117.menu-list[focused="true"] {
118 color: white;
119}
120
121#ColorPicker {
122 -moz-user-focus: normal;
123}
124
125#ColorPickerSwatch {
74d14f90 126 border: 2px outset #CCD0DD;
f6e0a33f 127 width: 25px;
128 height: 20px;
129 margin: 0px 3px 0px 0px;
130}
131
132#ColorPickerSwatch[default="true"] {
74d14f90 133 border: 2px solid transparent;
f6e0a33f 134 background-color: inherit;
135}
136
137#LastPickedColor {
138 width: 17px;
139 height: 13px;
140 border: 1px inset #CCD0DD;
141 margin: 1px 2px 2px 4px;
142}
143
f6e0a33f 144/* temporary -- we need a simple box-based list defined in XBL */
145tree.list {
146 border: 1px inset #CCD0DD;
147 /* same as in menulist.css */
148 margin: 1px 5px 2px 5px;
f6e0a33f 149 /* use rows="#" in XUL to define height */
150}
151
152#ColorPreview {
153 border: 1px inset #CCD0DD;
74d14f90 154 margin-left: 10px;
155 padding-left: 5px;
156 padding-right: 5px;
157 min-width: 100px;
158 min-height: 50px;
f6e0a33f 159}
160
74d14f90 161#alignTypeSelect,
162label#alignLabel {
f6e0a33f 163 margin-left: 5px;
164}
165
74d14f90 166/* ::::: table properties dialog ::::: */
167
f6e0a33f 168#MoreFewerButton[more="0"] {
74d14f90 169 list-style-image: url(chrome://global/skin/arrow/arrow-down.gif);
f6e0a33f 170 min-width: 12em;
171}
172
f6e0a33f 173#MoreFewerButton[more="1"] {
74d14f90 174 list-style-image: url(chrome://global/skin/arrow/arrow-up.gif);
f6e0a33f 175 min-width: 12em;
176}
177
178#PreviousButton {
74d14f90 179 list-style-image: url(chrome://global/skin/arrow/arrow-left.gif);
f6e0a33f 180}
181
182#NextButton {
74d14f90 183 list-style-image: url(chrome://global/skin/arrow/arrow-right.gif);
f6e0a33f 184}
185
186#PreviousButton[type="row"] {
74d14f90 187 list-style-image: url(chrome://global/skin/arrow/arrow-up.gif);
f6e0a33f 188}
189
190#NextButton[type="row"] {
74d14f90 191 list-style-image: url(chrome://global/skin/arrow/arrow-down.gif);
f6e0a33f 192}
193
194/* ::::: spelling dialog ::::: */
195
196#MisspelledWord {
197 font-weight: bold;
198}
199
200#ReplaceWordInput {
201 min-width: 16em;
202 width: 16em;
203}
204
205.spell-check {
206 min-width: 8em;
207}
208
209/* ::::: color picker ::::: */
210
211/* use outset shape for a button look */
212.colorpicker {
213 border: 1px outset #CCD0DD;
214 /* This should be the same as for textbox */
215 margin-left: 4px;
216 /* For a little extra space between buttons */
217 margin-bottom: 2px;
218}
219
220
221.colorpicker:active {
222 border: 1px inset #CCD0DD;
223}
224
225.smallspacer {
74d14f90 226 width: 3px;
f6e0a33f 227 height: 3px;
74d14f90 228 min-width: 3px;
f6e0a33f 229 min-height: 3px;
230}
231
232.spacer {
74d14f90 233 width: 5px;
f6e0a33f 234 height: 5px;
74d14f90 235 min-width: 5px;
f6e0a33f 236 min-height: 5px;
237}
238
239.bigspacer {
74d14f90 240 width: 10px;
f6e0a33f 241 height: 10px;
74d14f90 242 min-width: 10px;
f6e0a33f 243 min-height: 10px;
244}
245
74d14f90 246#alignTypeSelect {
247 height: 34px;
248}
249
f6e0a33f 250.align-menu[value="top"] {
74d14f90 251 list-style-image:url("chrome://editor/skin/icons/img-align-top.gif");
f6e0a33f 252}
253
254.align-menu[value="center"] {
74d14f90 255 list-style-image:url("chrome://editor/skin/icons/img-align-middle.gif");
f6e0a33f 256}
257
258.align-menu[value="bottom"] {
74d14f90 259 list-style-image:url("chrome://editor/skin/icons/img-align-bottom.gif");
f6e0a33f 260}
261
262.align-menu[value="right"] {
74d14f90 263 list-style-image:url("chrome://editor/skin/icons/img-align-right.gif");
f6e0a33f 264}
265
266.align-menu[value="left"] {
74d14f90 267 list-style-image:url("chrome://editor/skin/icons/img-align-left.gif");
f6e0a33f 268}
269
270/* Don't change width/height of these without changing values in
271 GetOriginalWidth(), EdImageProps.js
272*/
273#preview-image-box {
274 border: 1px inset #CCD0DD;
74d14f90 275 width: 82px;
276 max-width: 82px;
277 min-width: 82px;
278 height: 52px;
279 max-height: 52px;
280 min-height: 52px;
281 margin: 6px 5px 6px 5px;
282 overflow: hidden;
f6e0a33f 283}
284
285#preview-image-holder {
74d14f90 286 padding: 0px;
287 margin: 0px;
f6e0a33f 288}
289
290/* Rest are from Ben Goodger for Advanced Edit dialog
291 These need reviewing and eliminate all but essential attributes */
292/* Have made some mods and eliminated some unnecessary portions.
293 hope to merge most of the treecell formatting into global as some of
294 this "property list" style treecell formatting is used by cookie/signon
295 viewers. */
296
297
298#tagLabel {
299 font-weight: bold;
300}
301
302/* styles for an attribute tree-table */
303tree.AttributesTree {
74d14f90 304 min-width: 200px;
f6e0a33f 305 min-height: 200px;
306}