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

@ -26,9 +26,20 @@
}
ul.fancytree-container {
width: 290px;
height: 400px;
overflow: auto;
position: relative;
outline: none !important;
width: 290px;
height: 400px;
overflow: auto;
position: relative;
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");
}