mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
- Replaces the magnifying glass icon with a new design that aligns better with the purpose of finding channels. - Matches the "Browse Channels" link styling with the link at the bottom of the left sidebar for consistency Fixes: #32914 Co-Authored-By: Vlad Korobov <terpimost@gmail.com>
17 lines
914 B
Handlebars
17 lines
914 B
Handlebars
{{#if exactly_one_unsubscribed_stream}}
|
|
<a class="subscribe-more-link" href="#channels/notsubscribed">
|
|
<i class="subscribe-more-icon zulip-icon zulip-icon-browse-channels" aria-hidden="true" ></i>
|
|
<span class="subscribe-more-label">{{~t "BROWSE 1 MORE CHANNEL" ~}}</span>
|
|
</a>
|
|
{{else if can_subscribe_stream_count}}
|
|
<a class="subscribe-more-link" href="#channels/notsubscribed">
|
|
<i class="subscribe-more-icon zulip-icon zulip-icon-browse-channels" aria-hidden="true" ></i>
|
|
<span class="subscribe-more-label">{{~t "BROWSE {can_subscribe_stream_count} MORE CHANNELS" ~}}</span>
|
|
</a>
|
|
{{else if can_create_streams}}
|
|
<a class="subscribe-more-link" href="#channels/new">
|
|
<i class="subscribe-more-icon zulip-icon zulip-icon-browse-channels" aria-hidden="true" ></i>
|
|
<span class="subscribe-more-label">{{~t "CREATE A CHANNEL" ~}}</span>
|
|
</a>
|
|
{{/if}}
|