css only hovering solution, easier on the cpu

This commit is contained in:
Athou
2013-05-26 17:16:03 +02:00
parent e5668d0196
commit 89ae981f37
2 changed files with 16 additions and 9 deletions

View File

@@ -15,10 +15,6 @@
white-space: nowrap;
}
.css-treeview .config {
padding-top: 3px;
}
.css-treeview ul {
list-style: none;
margin-left: 0px;
@@ -81,6 +77,17 @@
text-decoration: none;
}
.css-treeview .config {
display: none;
}
.css-treeview .tree-item:hover .config {
display: block;
padding-top: 3px;
width: 16px;
height: 16px;
}
.css-treeview .indent1 {
padding-left: 22px;
}