mirror of https://github.com/zulip/zulip.git
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:
parent
d35e482ddc
commit
b563fdc537
|
@ -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%);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue