mirror of
https://github.com/zadam/trilium.git
synced 2025-03-04 02:53:30 +08:00
new black & white icons with css override
This commit is contained in:
parent
a3a0b2cbc2
commit
80bfc5d1ac
3 changed files with 16 additions and 5 deletions
BIN
static/icons/file.png
Normal file
BIN
static/icons/file.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 288 B |
BIN
static/icons/folder.png
Normal file
BIN
static/icons/folder.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 292 B |
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue