From 953ee778f332c2bad99ffcbcbac98ef5ff449616 Mon Sep 17 00:00:00 2001 From: Brock Whittaker Date: Mon, 4 Dec 2017 13:29:16 -0800 Subject: [PATCH] sidebars: Remove link underlines on hover. This removes the underlines on the stream names and user names when hovered over for a cleaner look. This is acceptable due to the fact that hover is signified already by a light grey background. --- static/styles/left-sidebar.css | 12 ++++-------- static/styles/right-sidebar.css | 4 ++++ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/static/styles/left-sidebar.css b/static/styles/left-sidebar.css index bb96b6e5ed..4d80c46fef 100644 --- a/static/styles/left-sidebar.css +++ b/static/styles/left-sidebar.css @@ -53,6 +53,10 @@ font-weight: normal; } +.left-sidebar li a:hover { + text-decoration: none; +} + #stream_filters li { padding: 1px 0px; } @@ -147,14 +151,6 @@ li.hidden-filter { padding: 1px 10px; } -#global_filters .global-filter a:hover { - text-decoration: none; -} - -#global_filters .global-filter:hover .hover-underline { - text-decoration: underline; -} - .left-sidebar li { padding-top: 2px; padding-bottom: 2px; diff --git a/static/styles/right-sidebar.css b/static/styles/right-sidebar.css index e88f609811..caf8604b83 100644 --- a/static/styles/right-sidebar.css +++ b/static/styles/right-sidebar.css @@ -3,6 +3,10 @@ font-size: 0.89rem; } +.right-sidebar a:hover { + text-decoration: none; +} + #group-pms li:hover, #user_presences li:hover { background-color: hsl(93, 19%, 88%);