Fix missing images for jQuery treeview lib

This commit is contained in:
Molkobain
2021-03-17 16:44:41 +01:00
parent 7fec31e775
commit be4012ea5d
4 changed files with 36 additions and 13 deletions

View File

@@ -89,9 +89,9 @@ $ibo-vendors-jquery-treeview--filetree--folder-file--height: 15px !default;
}
.filetree span.folder {
background: url($approot-relative + '/images/folder.gif') 0 0 no-repeat;
background: url($approot-relative + '/images/tv-folder.gif') 0 0 no-repeat;
}
.filetree span.file {
background: url($approot-relative + '/images/file.gif') 0 0 no-repeat;
background: url($approot-relative + '/images/tv-file.gif') 0 0 no-repeat;
}

View File

@@ -30,16 +30,39 @@
#treecontrol { margin: 1em 0; }
.treeview .hover { color: red; cursor: pointer; }
.treeview .hover {
color: red;
cursor: pointer;
}
.treeview li { background: url(../images/tv-item.gif) 0 0 no-repeat; }
.treeview .collapsable { background-image: url(../images/tv-collapsable.gif); }
.treeview .expandable { background-image: url(../images/tv-expandable.gif); }
.treeview .last { background-image: url(../images/tv-item-last.gif); }
.treeview .lastCollapsable { background-image: url(../images/tv-collapsable-last.gif); }
.treeview .lastExpandable { background-image: url(../images/tv-expandable-last.gif); }
.treeview li {
background: url(../images/tv-item.gif) 0 0 no-repeat;
}
.filetree li { padding: 3px 0 1px 16px; }
.filetree span.folder, .filetree span.file { padding-left: 16px; display: block; height: 15px; }
.filetree span.folder { background: url(../images/folder.gif) 0 0 no-repeat; }
.filetree span.file { background: url(../images/file.gif) 0 0 no-repeat; }
.treeview .collapsable {
background-image: url(../images/tv-collapsable.gif);
}
.treeview .expandable {
background-image: url(../images/tv-expandable.gif);
}
.treeview .last {
background-image: url(../images/tv-item-last.gif);
}
.treeview .lastCollapsable {
background-image: url(../images/tv-collapsable-last.gif);
}
.treeview .lastExpandable {
background-image: url(../images/tv-expandable-last.gif);
}
.filetree span.folder {
background: url(../images/tv-folder.gif) 0 0 no-repeat;
}
.filetree span.file {
background: url(../images/tv-file.gif) 0 0 no-repeat;
}

BIN
images/tv-file.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

BIN
images/tv-folder.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B