Skip to content

Commit

Permalink
fix(file-manager): add hover effect and lighten selected background i…
Browse files Browse the repository at this point in the history
…n file tree
  • Loading branch information
NicolasRichel committed Jul 7, 2021
1 parent d44840f commit fd7b39b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/specific/files/file-tree/FileTree.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,13 @@

&__node.selected {
.file-tree-node__node__background {
opacity: 1;
opacity: 0.4;
}
}

&__node:hover:not(.selected) {
.file-tree-node__node__background {
opacity: 0.3;
}
}
}
Expand Down

0 comments on commit fd7b39b

Please sign in to comment.