mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-03-05 17:31:09 +00:00
41 lines
1.1 KiB
CSS
41 lines
1.1 KiB
CSS
/* 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/. */
|
|
|
|
@import url("chrome://global/skin/");
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
/* ::::: column widths ::::: */
|
|
|
|
#FilenameColumn,
|
|
#ContentLengthColumn,
|
|
#LastModifiedDateColumn {
|
|
width: 100px;
|
|
}
|
|
|
|
/* ::::: file/directory items ::::: */
|
|
|
|
treechildren::-moz-tree-image(treecolAutoCompleteValue, directory),
|
|
treechildren::-moz-tree-image(FilenameColumn, directory) {
|
|
margin-right: 2px;
|
|
list-style-image: url("chrome://global/skin/filepicker/dir-closed.gif");
|
|
}
|
|
|
|
treechildren::-moz-tree-image(treecolAutoCompleteValue, file),
|
|
treechildren::-moz-tree-image(FilenameColumn, file) {
|
|
list-style-image: url("chrome://global/skin/filepicker/blank.gif");
|
|
}
|
|
|
|
/* ::::: button items ::::: */
|
|
|
|
.up-button {
|
|
list-style-image: url("chrome://global/skin/filepicker/folder-up.gif");
|
|
max-width: 36px;
|
|
}
|
|
|
|
.home-button {
|
|
list-style-image: url("chrome://global/skin/filepicker/folder-home.gif");
|
|
max-width: 36px;
|
|
}
|