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:
Steve Howell 2019-02-16 23:49:02 +00:00 committed by Tim Abbott
parent 3c8c2abd99
commit ea05afdf04
1 changed files with 4 additions and 1 deletions

View File

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