Revert "Make recipient bar styling more compact and clean."

This reverts commit 8e2d9b8f68.

This adds the arrows back to the recipient bars because even though
it's not our end state, it looks better than the boxy design that we
had in between.
This commit is contained in:
Brock Whittaker
2018-02-15 16:47:38 -08:00
committed by Tim Abbott
parent a32e1eb913
commit d30a6c64c3
3 changed files with 41 additions and 3 deletions

View File

@@ -49,7 +49,8 @@ function update_table_stream_color(table, stream_name, color) {
if ($.trim($label.text()) === stream_name) {
var messages = $label.closest(".recipient_row").children(".message_row");
messages.children(".messagebox").css("box-shadow", "inset 2px 0px 0px 0px " + style + ", -1px 0px 0px 0px " + style);
$label.css({background: style});
$label.css({background: style,
"border-left-color": style});
$label.removeClass(exports.color_classes);
$label.addClass(color_class);
}