Add hover to file manager tree

This commit is contained in:
Pierre Bondoerffer
2017-03-01 15:57:22 +01:00
parent cbdfae09a6
commit 3e9c4d0901
2 changed files with 17 additions and 9 deletions

View File

@@ -101,18 +101,21 @@ span.fa-folder-open {
color: #000;
}
#tree li {
/*cursor: pointer;*/
cursor: auto;
}
#tree li:hover > span.element {
text-decoration: underline;
}
#tree li.collapsed ul {
display: none;
}
#tree li input {
width: calc(70%);
}
#tree li > span.element-row {
width: 100%;
display: inline-block;
}
#tree li > span.element-row:not(.selected):hover {
background-color: #eee;
}
#tree span.element {
cursor: pointer;
}