some corrections and finishing touches to that LCARStrek works well for Firefox 55...
[themes.git] / EarlyBlue / communicator / directory / directory.css
CommitLineData
9099c61d
RK
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
f6e0a33f 4
74d14f90 5@import url("chrome://communicator/skin/");
6
128000f4 7@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
8
e1597424 9/* ===== directory.css ==================================================
10 == Styles specific to the directory listing window.
11 ======================================================================= */
12
f6180490 13page {
14 padding: 0px;
15}
16
e1597424 17#tree {
18 margin: 0px !important;
19 border: none;
f6e0a33f 20}
21
a1f525f0 22treechildren::-moz-tree-image(FilenameColumn) {
dae45075 23 margin-inline-end: 2px;
e1597424 24 list-style-image: url("chrome://communicator/skin/directory/file.gif");
25}
26
a1f525f0 27treechildren::-moz-tree-image(FilenameColumn, selected) {
dae45075 28 margin-inline-end: 2px;
e1597424 29 list-style-image: url("chrome://communicator/skin/directory/file-sel.gif");
30}
31
a1f525f0 32treechildren::-moz-tree-image(FilenameColumn, container) {
e1597424 33 list-style-image: url("chrome://communicator/skin/directory/folder-closed.gif");
34}
35
a1f525f0 36treechildren::-moz-tree-image(FilenameColumn, container, selected) {
e1597424 37 list-style-image: url("chrome://communicator/skin/directory/folder-closed-sel.gif");
f6e0a33f 38}
39
a1f525f0 40treechildren::-moz-tree-image(FilenameColumn, container, open) {
e1597424 41 list-style-image: url("chrome://communicator/skin/directory/folder-open.gif");
42}
43
a1f525f0 44treechildren::-moz-tree-image(FilenameColumn, container, open, selected) {
e1597424 45 list-style-image: url("chrome://communicator/skin/directory/folder-open-sel.gif");
46}
47
a1f525f0 48treechildren::-moz-tree-image(FilenameColumn, loading) {
e1597424 49 list-style-image: url("chrome://global/skin/icons/loading.gif");
50}
51
a1f525f0 52treechildren::-moz-tree-cell-text(symbolic-link) {
e1597424 53 font-style: italic;
54}
55
56/* ::::: column/row preferred sizes ::::: */
57
58#FilenameColumn,
59#LastModColumn,
60#ContentLengthColumn {
f6e0a33f 61 width: 100px;
62}
63
e1597424 64div.server {
65 color: blue;
66 display: block;
f6e0a33f 67 font-size: 10pt;
68 font-family: sans-serif;
69}
70
e1597424 71div.client {
72 color: red;
73 display: block;
f6e0a33f 74 font-size: 10pt;
75 font-family: sans-serif;
76}