From 80bfc5d1ac8e10f970285a85cc6475062ca9aded Mon Sep 17 00:00:00 2001 From: azivner Date: Sun, 27 Aug 2017 11:36:20 -0400 Subject: [PATCH] new black & white icons with css override --- static/icons/file.png | Bin 0 -> 288 bytes static/icons/folder.png | Bin 0 -> 292 bytes static/style.css | 21 ++++++++++++++++----- 3 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 static/icons/file.png create mode 100644 static/icons/folder.png diff --git a/static/icons/file.png b/static/icons/file.png new file mode 100644 index 0000000000000000000000000000000000000000..17cfc49a3947e261fad259ec4248bfccc2f46503 GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHi=yG{3C*E6wt6K%upsE{-7jd?Yr>9; zxO2{WAlAYA$+Lm`m;5X9IU9eloV44^ZNc)u*~HM@kmbiR*bH6Cewkn!H~wHXw#V!Z literal 0 HcmV?d00001 diff --git a/static/icons/folder.png b/static/icons/folder.png new file mode 100644 index 0000000000000000000000000000000000000000..176c7f6de6ed7d28eb47ffdfde18edab672b6f78 GIT binary patch literal 292 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHi=yG{2mwK9{Q`P-vs4i(`nz>9>~_b}=Q2us%3nzbsc+ zY@4Rr{iMld2bcM$3HGRUZ@Zfm^nvxxf|KF`VFec+==%i7%zdRRe(wMMV*ckbUSX== z^1pnXSUo%8ONYXOK20ghKf=r=-5M_vdPE|R1fK~!`s&ynIp;rYDuQQ<F{))!w^o;<04Q2kg6>SmJ*iS4wCW`!_FO ggPZj2O=1?znq{(Fetdl~K*uw9y85}Sb4q9e0A`MBv;Y7A literal 0 HcmV?d00001 diff --git a/static/style.css b/static/style.css index 4b637658f..bc545af95 100644 --- a/static/style.css +++ b/static/style.css @@ -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"); +} +