mirror of https://github.com/zulip/zulip.git
css: Avoid unused background for group PMs.
The background color for group PMs is driven by specific styles in the HTML, so the CSS definition here was inaccurate.
This commit is contained in:
parent
3c8c2abd99
commit
ea05afdf04
|
@ -7,9 +7,12 @@
|
|||
top: 5px;
|
||||
}
|
||||
|
||||
.user_active .user-status-indicator {
|
||||
background-color: hsl(106, 74%, 44%);
|
||||
}
|
||||
|
||||
.user_active .user-status-indicator,
|
||||
.group-pm-status-indicator {
|
||||
background-color: hsl(106, 74%, 44%);
|
||||
border-color: hsl(106, 74%, 44%);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue