css: Fix hidden unread marker when a user mentioned message is focused.

Increase z-index of unread-marker to always appear above the message and
focused outline. Also, z-index of date_row is increased to hide
unread marker for it in special conditions.
This commit is contained in:
Aman Agrawal 2022-11-11 15:50:05 +00:00 committed by Tim Abbott
parent d35e482ddc
commit b563fdc537
1 changed files with 2 additions and 2 deletions

View File

@ -1401,7 +1401,7 @@ td.pointer {
left: 2px;
top: 0;
opacity: 0;
z-index: 1;
z-index: 2;
bottom: 1px;
transition: all 0.3s ease-out;
@ -3218,7 +3218,7 @@ div.topic_edit_spinner .loading_indicator_spinner {
.message_row.unread {
.date_row {
position: relative;
z-index: 1;
z-index: 3;
background-color: hsl(0, 0%, 100%);
}
}