From 04f9352fa9e7cbacbf4aa618999a23142f85f44d Mon Sep 17 00:00:00 2001 From: Vinzenz Vietzke Date: Tue, 6 Oct 2020 20:58:23 +0200 Subject: [PATCH 1/2] darken unseen notification text on frio accent dark --- view/theme/frio/css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index c8fc42ad6..da208675d 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -591,6 +591,9 @@ nav.navbar .nav > li > button:focus border-left: 3px solid #e3eff3; background-color: #e3eff3; } +#topbar-first #nav-notifications-menu li.notification-unseen a { + color: $nav_icon_color; +} #topbar-first #nav-notifications-menu li.notif-entry:hover { background-color: #f7f7f7; border-left: 3px solid $link_color; @@ -604,6 +607,9 @@ nav.navbar .nav > li > button:focus #topbar-first #nav-notifications-menu .media .media-body .label { padding: .1em .5em } +#topbar-first #nav-notifications-menu li.notification-unseen .media .time { + color: $nav_icon_color; +} #topbar-first #nav-notifications-menu li.notif-entry .media-object a img { height: 32px; width: 32px; From cec91000e205257b04654afae9ae723d7e236277 Mon Sep 17 00:00:00 2001 From: vinzv Date: Tue, 6 Oct 2020 22:05:55 +0200 Subject: [PATCH 2/2] make sure tweaks work for black and light scheme as well --- view/theme/frio/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index da208675d..dfd600632 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -592,7 +592,7 @@ nav.navbar .nav > li > button:focus background-color: #e3eff3; } #topbar-first #nav-notifications-menu li.notification-unseen a { - color: $nav_icon_color; + color: $nav_icon_hover_color; } #topbar-first #nav-notifications-menu li.notif-entry:hover { background-color: #f7f7f7; @@ -608,7 +608,7 @@ nav.navbar .nav > li > button:focus padding: .1em .5em } #topbar-first #nav-notifications-menu li.notification-unseen .media .time { - color: $nav_icon_color; + color: $nav_icon_hover_color; } #topbar-first #nav-notifications-menu li.notif-entry .media-object a img { height: 32px;