unread_banner: Update colors of unread banners.

Previously, the color of the unread banners is yellow which signals more
of a warning to the users. After a discussion in CZO, it was decided to
set setting configured unread banners to blue, which represents more of a
notice/informational banner as the user should be aware of the changes they
made to their settings.
This commit is contained in:
Joelute
2023-05-01 17:08:20 -04:00
committed by Tim Abbott
parent 5018cec311
commit 4d91df559c
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
<div id="mark_as_read_turned_off_banner" class="alert home-error-bar"> <div id="mark_as_read_turned_off_banner" class="alert alert-info home-error-bar">
<p id="mark_as_read_turned_off_content"> <p id="mark_as_read_turned_off_content">
{{#tr}} {{#tr}}
Your Zulip app is <z-link>configured</z-link> to not mark messages as read on scroll. Your Zulip app is <z-link>configured</z-link> to not mark messages as read on scroll.
@@ -6,7 +6,7 @@
{{/tr}} {{/tr}}
</p> </p>
<div id="mark_as_read_controls"> <div id="mark_as_read_controls">
<button id="mark_view_read" class="btn btn-warning"> <button id="mark_view_read" class="btn btn-info">
{{t 'Mark as read' }} {{t 'Mark as read' }}
</button> </button>
</div> </div>

View File

@@ -1,4 +1,4 @@
<div id="mark_as_read_turned_off_banner" class="alert home-error-bar"> <div id="mark_as_read_turned_off_banner" class="alert alert-info home-error-bar">
<p id="mark_as_read_turned_off_content"> <p id="mark_as_read_turned_off_content">
{{#tr}} {{#tr}}
Your Zulip app is <z-link>configured</z-link> to mark messages as read on scroll only in conversation views. Your Zulip app is <z-link>configured</z-link> to mark messages as read on scroll only in conversation views.
@@ -6,7 +6,7 @@
{{/tr}} {{/tr}}
</p> </p>
<div id="mark_as_read_controls"> <div id="mark_as_read_controls">
<button id="mark_view_read" class="btn btn-warning"> <button id="mark_view_read" class="btn btn-info">
{{t 'Mark as read' }} {{t 'Mark as read' }}
</button> </button>
</div> </div>