Showing hover backgrounds on expand toggles.

This commit is contained in:
2020-01-09 03:54:47 +01:00
parent 83cbdcbf3d
commit b1343a63b5
3 changed files with 34 additions and 3 deletions

View File

@@ -235,7 +235,7 @@ export default {
display: flex;
justify-content: center;
align-items: center;
padding: .5rem 0 0 0;
padding: .5rem 0;
font-weight: bold;
font-size: .9rem;
cursor: pointer;
@@ -250,14 +250,23 @@ export default {
}
}
.expand-sidebar {
.expand-sidebar:hover {
background: $shadow-hint;
}
.expand-header {
display: none;
&:hover {
background: $shadow-hint;
}
}
.collapse-header {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background: $profile;
color: $highlight;
@@ -266,6 +275,7 @@ export default {
}
&:hover {
background: $highlight-hint;
color: $text-contrast;
.icon {