[Glitch] Fix conversations not having an unread indicator in web UI

Fix ed73376f1c to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
Eugen Rochko
2019-12-01 07:06:20 +01:00
committed by Thibaut Girka
parent 2f8c4c588b
commit fae7e0cace
2 changed files with 29 additions and 2 deletions

View File

@@ -1507,6 +1507,16 @@
flex: 0 0 auto;
padding: 10px;
padding-top: 12px;
position: relative;
}
&__unread {
display: inline-block;
background: $highlight-text-color;
border-radius: 50%;
width: 0.625rem;
height: 0.625rem;
margin: -.1ex .15em .1ex;
}
&__content {
@@ -1554,6 +1564,22 @@
margin: 0;
}
}
&--unread {
background: lighten($ui-base-color, 2%);
&:focus {
background: lighten($ui-base-color, 4%);
}
.conversation__content__info {
font-weight: 700;
}
.conversation__content__relative-time {
color: $primary-text-color;
}
}
}
.ui .flash-message {