fix: notification dropdown unread state toggle

main
psychobunny 4 years ago
parent 256ed6eea9
commit c056572e60

@ -34,37 +34,32 @@
} }
} }
&.unread {
.bg-variant(@state-warning-bg);
.mark-read:after {
content: "\f111";
}
.mark-read:hover:after {
content: "\f10c";
}
}
.mark-read { .mark-read {
color: @text-muted; color: @text-muted;
&:after { &:after {
font-family: "FontAwesome"; font-family: "Font Awesome 5 Free";
content: "\f10c"; content: @fa-var-circle;
font-weight: 400;
padding: 4px 1rem; padding: 4px 1rem;
position: relative; position: relative;
top: 1px; top: 1px;
} }
&:hover { &:hover {
color: @gray-dark; color: darken(@text-muted, 10%);
.pointer; .pointer;
&:after {
content: "\f111";
} }
} }
&.unread {
.bg-variant(@state-warning-bg);
.mark-read:after {
font-family: "Font Awesome 5 Free";
content: @fa-var-circle;
font-weight: 900;
}
} }
} }
} }

Loading…
Cancel
Save