From b7d06229b677c17e517a3ca00c87a4504c99eb61 Mon Sep 17 00:00:00 2001 From: Cheton Wu Date: Mon, 30 Apr 2018 15:18:25 +0800 Subject: [PATCH] Use #eee as the background color when hovering over subitems --- src/sidenav-subnavitem.styl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/sidenav-subnavitem.styl b/src/sidenav-subnavitem.styl index 1e8c81f..8020983 100644 --- a/src/sidenav-subnavitem.styl +++ b/src/sidenav-subnavitem.styl @@ -20,6 +20,10 @@ font-weight: bold; background: none; cursor: default; + + &:hover { + background: #fff; + } } > .navitem { @@ -31,6 +35,9 @@ padding: 0 24px; cursor: pointer; + &:hover { + background: #eee; + } &:focus { outline: 0; }