blob: 0f796a6a96819a7129e509535eb90a55ddfe5763 (
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
|
/* 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/. */
/* ===== toolbar.css ====================================================
== Styles used by XUL toolbar-related elements.
======================================================================= */
/* ::::: toolbox ::::: */
toolbox {
appearance: auto;
-moz-default-appearance: toolbox;
background-color: -moz-Dialog;
border-left: 1px solid ThreeDShadow;
border-top: 1px solid ThreeDShadow;
border-right: none;
border-bottom: 1px solid #000000;
}
/* ::::: toolbar & menubar ::::: */
toolbar,
menubar {
appearance: auto;
-moz-default-appearance: toolbar;
min-width: 1px; /* DON'T DELETE!
Prevents hiding of scrollbars in browser when window is made smaller.*/
}
.toolbar-holder {
border-left: 1px solid ThreeDHighlight;
border-top: 1px solid ThreeDHighlight;
border-right: 1px solid ThreeDShadow;
border-bottom: 1px solid ThreeDShadow;
}
/* ::::: toolbarseparator ::::: */
toolbarseparator {
appearance: auto;
-moz-default-appearance: separator;
margin: 2px 0.2em;
border-right: 1px solid ThreeDHighlight;
border-left: 1px solid ThreeDShadow;
width: 2px;
}
|