all_messages: Change default icon from home to align-left.

Since All messages narrow is no longer home page for webapp,
we change its icon to align-left which also shows a concept of
interleaved topics / messages.
This commit is contained in:
Aman Agrawal
2020-11-10 13:47:07 +05:30
committed by Tim Abbott
parent a29b328854
commit b84bce2bc7
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ function make_message_view_header(filter) {
if (filter === undefined) { if (filter === undefined) {
return { return {
title: i18n.t("All messages"), title: i18n.t("All messages"),
icon: "home", icon: "align-left",
}; };
} }
message_view_header.title = filter.get_title(); message_view_header.title = filter.get_title();

View File

@@ -274,7 +274,7 @@ li.top_left_recent_topics {
line-height: 1.25; line-height: 1.25;
} }
.top_left_all_messages i.fa-home { .top_left_all_messages i.fa-align-left {
position: relative; position: relative;
font-size: 15px; font-size: 15px;
} }

View File

@@ -5,7 +5,7 @@
<li class="top_left_all_messages top_left_row" title="{{ _('All messages') }} (a)"> <li class="top_left_all_messages top_left_row" title="{{ _('All messages') }} (a)">
<a href="#all_messages" class="home-link"> <a href="#all_messages" class="home-link">
<span class="filter-icon"> <span class="filter-icon">
<i class="fa fa-home" aria-hidden="true"></i> <i class="fa fa-align-left" aria-hidden="true"></i>
</span> </span>
{#- squash whitespace -#} {#- squash whitespace -#}
<span>{{ _('All messages') }}</span> <span>{{ _('All messages') }}</span>