mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
54bcb094a8
--HG-- extra : rebase_source : 1e710d9308c037c9037fe00e9360eb1ee0131408
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;
|
|
}
|