From c056572e603260e6b89e798f78de49168d3a7dcc Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 17 Aug 2021 16:51:19 -0400 Subject: [PATCH] fix: notification dropdown unread state toggle --- less/header.less | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/less/header.less b/less/header.less index 0cd3d26..9ae5849 100644 --- a/less/header.less +++ b/less/header.less @@ -34,36 +34,31 @@ } } - &.unread { - .bg-variant(@state-warning-bg); - - .mark-read:after { - content: "\f111"; - } - - .mark-read:hover:after { - content: "\f10c"; - } - } - .mark-read { color: @text-muted; &:after { - font-family: "FontAwesome"; - content: "\f10c"; + font-family: "Font Awesome 5 Free"; + content: @fa-var-circle; + font-weight: 400; padding: 4px 1rem; position: relative; top: 1px; } &:hover { - color: @gray-dark; + color: darken(@text-muted, 10%); .pointer; + } + } + + &.unread { + .bg-variant(@state-warning-bg); - &:after { - content: "\f111"; - } + .mark-read:after { + font-family: "Font Awesome 5 Free"; + content: @fa-var-circle; + font-weight: 900; } } }