gecko-dev/themes/modern/global/filepicker.css

37 строки
751 B
CSS

@import url(chrome://global/skin/global.css);
treecell.directory {
list-style-image: url("chrome://global/skin/dir-closed.gif");
}
treecell.file {
list-style-image: url("chrome://global/skin/blank.gif");
}
/*
treeitem.hidden > treerow > treecell > .tree-button {
color: #CCCCCC;
}
treeitem.hidden > treerow > treecell > .tree-icon {
list-style-image: url("chrome://global/skin/blank.gif");
}
*/
/**
* This fixes a bug. As you scroll down in a tree the computed column width
* can change. That would make the columns shift durning scrolling.
* So we give them inital preferred widths so they aren't computed.
*/
#FilenameColumn {
width: 100px;
}
#ContentLengthColumn {
width: 100px;
}
#LastModifiedDateColumn {
width: 100px;
}