Files
zulip/web/templates/subscribe_to_more_streams.hbs
Harsh Bansal b7599a41d8 left sidebar (ui): Change icon for browse channels.
- 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>
2025-01-08 09:23:11 -08:00

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}}