Make it easier to see which tab is selected in the sidebar

This commit is contained in:
Bat 2018-03-17 12:29:58 +01:00
parent a29a92bc21
commit 95426cfff4
1 changed files with 11 additions and 2 deletions

View File

@ -181,11 +181,20 @@ $sidebar-color: #1B1C1D;
}
.menu-area {
padding: 0.5rem;
.menu .item:not(.active):not(:hover) {
background-color: rgba(255, 255, 255, 0.06);
background-color: rgba(255, 255, 255, 0.15);
}
.menu .item {
border-radius: 0;
}
.menu .item.active {
background-color: $sidebar-color;
&:hover {
background-color: $sidebar-color;
}
}
}
.tabs {
overflow-y: auto;