mirror of https://github.com/zulip/zulip.git
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:
parent
02ae5818ae
commit
19a47a71d8
|
@ -773,10 +773,6 @@ a.compose_control_button.hide {
|
||||||
|
|
||||||
#compose_select_stream_name {
|
#compose_select_stream_name {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
|
||||||
&.lock-padding {
|
|
||||||
padding-left: 3px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-list-body .list_item a {
|
.dropdown-list-body .list_item a {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{{! This controls whether the swatch next to streams in the left sidebar has a lock icon. }}
|
{{! This controls whether the swatch next to streams in the left sidebar has a lock icon. }}
|
||||||
{{#if stream.invite_only }}
|
{{#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 }}
|
{{ 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 }}
|
{{ 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}}
|
{{/if}}
|
||||||
|
|
Loading…
Reference in New Issue