Add hover to file manager tree
This commit is contained in:
parent
cbdfae09a6
commit
3e9c4d0901
@ -101,18 +101,21 @@ span.fa-folder-open {
|
|||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
#tree li {
|
#tree li {
|
||||||
/*cursor: pointer;*/
|
|
||||||
cursor: auto;
|
cursor: auto;
|
||||||
}
|
}
|
||||||
#tree li:hover > span.element {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
#tree li.collapsed ul {
|
#tree li.collapsed ul {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
#tree li input {
|
#tree li input {
|
||||||
width: calc(70%);
|
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 {
|
#tree span.element {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,8 @@
|
|||||||
@tree-fg: #000;
|
@tree-fg: #000;
|
||||||
@tree-lines-col: #888;
|
@tree-lines-col: #888;
|
||||||
|
|
||||||
|
@drive-hover: #eee;
|
||||||
|
|
||||||
@content-bg: @tree-bg;
|
@content-bg: @tree-bg;
|
||||||
@content-bg-ro: darken(@content-bg, 10%);
|
@content-bg-ro: darken(@content-bg, 10%);
|
||||||
@content-fg: @tree-fg;
|
@content-fg: @tree-fg;
|
||||||
@ -134,17 +136,20 @@ span {
|
|||||||
padding: 10px 0px;
|
padding: 10px 0px;
|
||||||
color: @tree-fg;
|
color: @tree-fg;
|
||||||
li {
|
li {
|
||||||
/*cursor: pointer;*/
|
|
||||||
cursor: auto;
|
cursor: auto;
|
||||||
&:hover > span.element {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
&.collapsed ul {
|
&.collapsed ul {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
input {
|
input {
|
||||||
width: calc(100% - 30px);
|
width: calc(100% - 30px);
|
||||||
}
|
}
|
||||||
|
& > span.element-row {
|
||||||
|
width: 100%;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
& > span.element-row:not(.selected):hover {
|
||||||
|
background-color: @drive-hover;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
span.element {
|
span.element {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -262,7 +267,7 @@ span {
|
|||||||
}
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
&:not(.selected) {
|
&:not(.selected) {
|
||||||
background-color: #eee;
|
background-color: @drive-hover;
|
||||||
}
|
}
|
||||||
.name {
|
.name {
|
||||||
/*text-decoration: underline;*/
|
/*text-decoration: underline;*/
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user