From 235ac03775dced666cc86e559cb52b239dbdb135 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 7 Jun 2017 21:43:32 +0200 Subject: [PATCH] Hover-effect for new messages --- stylesheets/_conversation.scss | 4 ++++ stylesheets/android-dark.scss | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/stylesheets/_conversation.scss b/stylesheets/_conversation.scss index ce5b29aa1..1e4c13b41 100644 --- a/stylesheets/_conversation.scss +++ b/stylesheets/_conversation.scss @@ -744,6 +744,10 @@ li.entry .error-icon-container { .icon { @include color-svg('/images/down.svg', white); } + + :hover { + background-color: #1472bd; + } } } } diff --git a/stylesheets/android-dark.scss b/stylesheets/android-dark.scss index 4be819246..b516ffe38 100644 --- a/stylesheets/android-dark.scss +++ b/stylesheets/android-dark.scss @@ -230,11 +230,15 @@ $text-dark: #CCCCCC; .icon:hover { background-color: white; } + &.new-messages { background-color: $blue; .icon { @include color-svg('/images/down.svg', white); } + :hover { + background-color: #1472bd; + } } } }