From 4564a40ec408795a6366ee10a75111942a62a231 Mon Sep 17 00:00:00 2001 From: Bat <baptiste@gelez.xyz> Date: Sat, 17 Mar 2018 13:37:47 +0100 Subject: [PATCH] Make it even easier to understand which tab is selected in the sidebar --- front/src/components/Sidebar.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/front/src/components/Sidebar.vue b/front/src/components/Sidebar.vue index 3980ab7d5c..7291d7f99a 100644 --- a/front/src/components/Sidebar.vue +++ b/front/src/components/Sidebar.vue @@ -148,7 +148,7 @@ export default { <style scoped lang="scss"> @import '../style/vendor/media'; -$sidebar-color: #1B1C1D; +$sidebar-color: #3D3E3F; .sidebar { background: $sidebar-color; @@ -176,7 +176,8 @@ $sidebar-color: #1B1C1D; margin: 0; background-color: $sidebar-color; } - .menu { + .menu.vertical { + background: $sidebar-color; } } @@ -192,7 +193,7 @@ $sidebar-color: #1B1C1D; .menu .item.active { background-color: $sidebar-color; &:hover { - background-color: $sidebar-color; + background-color: rgba(255, 255, 255, 0.06); } } } -- GitLab