mirror of https://github.com/zulip/zulip.git
empty_feed_notice: Style empty message feed similar to other views.
This commit is contained in:
parent
8e7265fbb4
commit
61bf72d30e
|
@ -2738,6 +2738,15 @@ select.invite-as {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.empty-feed-notice-title {
|
||||
font-size: 1.5em;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.empty-feed-notice-description {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.message-fade,
|
||||
.user_sidebar_entry.user-fade {
|
||||
opacity: 0.4;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<div class="empty_feed_notice">
|
||||
<h4> {{ title }} </h4>
|
||||
<h4 class="empty-feed-notice-title"> {{ title }} </h4>
|
||||
<div class="empty-feed-notice-description">
|
||||
{{#if search_data}}
|
||||
<div>
|
||||
{{#if search_data.has_stop_word}}{{t "Some common words were excluded from your search." }} <br/>{{/if}}{{t "You searched for:" }}
|
||||
{{#if search_data.stream_query}}
|
||||
<span>stream: {{search_data.stream_query}}</span>
|
||||
|
@ -16,8 +16,8 @@
|
|||
<span>{{query_word}}</span>
|
||||
{{/if}}
|
||||
{{/each}}
|
||||
</div>
|
||||
{{else}}
|
||||
{{{ html }}}
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -75,9 +75,11 @@ run_test("empty_narrow_html", ({mock_template}) => {
|
|||
assert.equal(
|
||||
actual_html,
|
||||
`<div class="empty_feed_notice">
|
||||
<h4> This is a title </h4>
|
||||
<h4 class="empty-feed-notice-title"> This is a title </h4>
|
||||
<div class="empty-feed-notice-description">
|
||||
<h1> This is the html </h1>
|
||||
</div>
|
||||
</div>
|
||||
`,
|
||||
);
|
||||
|
||||
|
@ -98,8 +100,8 @@ run_test("empty_narrow_html", ({mock_template}) => {
|
|||
assert.equal(
|
||||
actual_html,
|
||||
`<div class="empty_feed_notice">
|
||||
<h4> This is a title </h4>
|
||||
<div>
|
||||
<h4 class="empty-feed-notice-title"> This is a title </h4>
|
||||
<div class="empty-feed-notice-description">
|
||||
Some common words were excluded from your search. <br/>You searched for:
|
||||
<span>stream: new</span>
|
||||
<span>topic: test</span>
|
||||
|
@ -123,8 +125,8 @@ run_test("empty_narrow_html", ({mock_template}) => {
|
|||
assert.equal(
|
||||
actual_html,
|
||||
`<div class="empty_feed_notice">
|
||||
<h4> This is a title </h4>
|
||||
<div>
|
||||
<h4 class="empty-feed-notice-title"> This is a title </h4>
|
||||
<div class="empty-feed-notice-description">
|
||||
You searched for:
|
||||
<span>stream: hello world</span>
|
||||
<span>searchA</span>
|
||||
|
@ -146,8 +148,8 @@ run_test("empty_narrow_html", ({mock_template}) => {
|
|||
assert.equal(
|
||||
actual_html,
|
||||
`<div class="empty_feed_notice">
|
||||
<h4> This is a title </h4>
|
||||
<div>
|
||||
<h4 class="empty-feed-notice-title"> This is a title </h4>
|
||||
<div class="empty-feed-notice-description">
|
||||
You searched for:
|
||||
<span>topic: hello</span>
|
||||
<span>searchB</span>
|
||||
|
|
Loading…
Reference in New Issue