blob: 34ce372a93e25941b795b1c54d351b6d36def174 (
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
|
/* 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 grippytoolbar in addition to general toolbar styles.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
.toolbar-primary {
min-height: 24px;
}
toolbargrippy {
display: none;
-moz-box-orient: vertical;
-moz-box-align: center;
width: 10px;
padding: 2px 1px;
list-style-image: url("chrome://communicator/skin/toolbar/tbgrip-arrow.png");
}
toolbargrippy:hover {
background-color: ThreeDHighlight;
}
.toolbargrippy-texture {
margin-top: 2px;
width: 6px;
background: url("chrome://communicator/skin/toolbar/tbgrip-texture.png");
}
/* ::::: collapsed tray and grippies ::::: */
toolbargrippy[tbgrippy-collapsed="true"] {
-moz-box-orient: horizontal;
border-left: 1px solid ThreeDHighlight;
border-top: 1px solid ThreeDHighlight;
border-right: 1px solid ThreeDShadow;
border-bottom: 1px solid ThreeDShadow;
width: 40px;
height: 10px;
padding: 1px 2px;
list-style-image: url("chrome://communicator/skin/toolbar/tbgrip-arrow-clps.png");
}
toolbargrippy[tbgrippy-collapsed="true"] > .toolbargrippy-texture {
margin-top: 0;
margin-inline-start: 2px;
width: 0px;
height: 6px;
}
.collapsed-tray-spacer {
border-bottom: 1px solid ThreeDShadow;
}
|