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:
Tim Abbott 2020-06-23 17:21:21 -07:00
parent 7fe52bbb9e
commit 4f7848d9b2
1 changed files with 4 additions and 2 deletions

View File

@ -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;
}
}