stream dropdown: Add a space after the stream icon.

This applies to several dropdowns, and matches the spacing of
the left sidebar.
This commit is contained in:
evykassirer 2023-04-19 17:57:58 -07:00 committed by Tim Abbott
parent 02ae5818ae
commit 19a47a71d8
2 changed files with 3 additions and 7 deletions

View File

@ -773,10 +773,6 @@ a.compose_control_button.hide {
#compose_select_stream_name {
flex-grow: 1;
&.lock-padding {
padding-left: 3px;
}
}
.dropdown-list-body .list_item a {

View File

@ -1,8 +1,8 @@
{{! This controls whether the swatch next to streams in the left sidebar has a lock icon. }}
{{#if stream.invite_only }}
<i class="zulip-icon zulip-icon-lock stream-privacy-type-icon" aria-hidden="true"></i>{{stream.name ~}}
<i class="zulip-icon zulip-icon-lock stream-privacy-type-icon" aria-hidden="true"></i> {{stream.name ~}}
{{ else if stream.is_web_public }}
<i class="zulip-icon zulip-icon-globe stream-privacy-type-icon" aria-hidden="true"></i>{{stream.name ~}}
<i class="zulip-icon zulip-icon-globe stream-privacy-type-icon" aria-hidden="true"></i> {{stream.name ~}}
{{ else }}
<i class="zulip-icon zulip-icon-hashtag stream-privacy-type-icon"></i>{{stream.name ~}}
<i class="zulip-icon zulip-icon-hashtag stream-privacy-type-icon"></i> {{stream.name ~}}
{{/if}}