new black & white icons with css override

This commit is contained in:
azivner 2017-08-27 11:36:20 -04:00
parent a3a0b2cbc2
commit 80bfc5d1ac
3 changed files with 16 additions and 5 deletions

BIN
static/icons/file.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 B

BIN
static/icons/folder.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

View File

@ -32,3 +32,14 @@ ul.fancytree-container {
position: relative; position: relative;
outline: none !important; outline: none !important;
} }
span.fancytree-node > span.fancytree-icon {
background-position: 0 0;
background-image: url("icons/file.png");
}
span.fancytree-node.fancytree-folder > span.fancytree-icon {
background-position: 0 0;
background-image: url("icons/folder.png");
}