update versions to current nightlies
[themes.git] / LCARStrek / 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/. */
351107c9 4
7aa65558 5@import url("chrome://communicator/skin/");
351107c9 6
b1eaa419 7@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
351107c9 8
7aa65558 9/* ===== directory.css ==================================================
10 == Styles specific to the directory listing window.
11 ======================================================================= */
351107c9 12
b935f37c 13page {
14 padding: 0px;
15}
16
7aa65558 17#tree {
18 margin: 0px !important;
19 border: none;
b1eaa419 20}
21
01fc5c11 22treechildren::-moz-tree-image(FilenameColumn) {
8caa872d 23 -moz-margin-end: 2px;
b1eaa419 24 list-style-image: url("chrome://communicator/skin/directory/file.gif");
7aa65558 25}
26
01fc5c11 27treechildren::-moz-tree-image(FilenameColumn, selected) {
8caa872d 28 -moz-margin-end: 2px;
b1eaa419 29 list-style-image: url("chrome://communicator/skin/directory/file-sel.gif");
30}
7aa65558 31
01fc5c11 32treechildren::-moz-tree-image(FilenameColumn, container) {
b1eaa419 33 list-style-image: url("chrome://communicator/skin/directory/folder-closed.gif");
34}
35
01fc5c11 36treechildren::-moz-tree-image(FilenameColumn, container, selected) {
b1eaa419 37 list-style-image: url("chrome://communicator/skin/directory/folder-closed-sel.gif");
38}
39
01fc5c11 40treechildren::-moz-tree-image(FilenameColumn, container, open) {
b1eaa419 41 list-style-image: url("chrome://communicator/skin/directory/folder-open.gif");
42}
43
01fc5c11 44treechildren::-moz-tree-image(FilenameColumn, container, open, selected) {
b1eaa419 45 list-style-image: url("chrome://communicator/skin/directory/folder-open-sel.gif");
46}
7aa65558 47
01fc5c11 48treechildren::-moz-tree-image(FilenameColumn, loading) {
b1eaa419 49 list-style-image: url("chrome://global/skin/icons/loading.gif");
50}
351107c9 51
01fc5c11 52treechildren::-moz-tree-cell-text(symbolic-link) {
b1eaa419 53 font-style: italic;
54}
55
7aa65558 56/* ::::: column/row preferred sizes ::::: */
351107c9 57
7aa65558 58#FilenameColumn,
59#LastModColumn,
351107c9 60#ContentLengthColumn {
61 width: 100px;
62}
63
7aa65558 64div.server {
dbd844cb 65 color: #3333FF;
7aa65558 66 display: block;
351107c9 67 font-size: 10pt;
68 font-family: sans-serif;
69}
70
7aa65558 71div.client {
72 color: red;
73 display: block;
351107c9 74 font-size: 10pt;
75 font-family: sans-serif;
76}