mirror of https://github.com/zulip/zulip.git
css: Fix starred messages not being displayed.
This change was missed in a4f5b0c635
.
Ideally, we'd figure out a refactoring that made these definitions
only appear in one place.
This commit is contained in:
parent
7fe52bbb9e
commit
4f7848d9b2
|
@ -732,9 +732,11 @@ td.pointer {
|
|||
}
|
||||
|
||||
&:not(.empty-star) {
|
||||
opacity: 1 !important;
|
||||
pointer-events: all !important;
|
||||
color: hsl(106, 77%, 29%);
|
||||
|
||||
// Opacity/visibility as though the message is hovered.
|
||||
opacity: 1 !important;
|
||||
visibility: visible !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue