FIX: blue notification bar overlaps text on New/Unread tab
This commit is contained in:
parent
e4085a64ce
commit
08e62347e1
|
@ -12,7 +12,7 @@
|
|||
|
||||
{{conditional-loading-spinner condition=loading}}
|
||||
|
||||
<div {{bind-attr class=":container :list-container loading:hidden"}}>
|
||||
<div class="container list-container {{if loading 'hidden'}}">
|
||||
<div class="row">
|
||||
<div class="full-width">
|
||||
<div id='header-list-area'>
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
</div>
|
||||
{{/if}}
|
||||
{{#if topicTrackingState.hasIncoming}}
|
||||
<div class="show-more">
|
||||
<div class="show-more {{if hasTopics 'has-topics'}}">
|
||||
<div class='alert alert-info clickable' {{action "showInserted"}}>
|
||||
{{count-i18n key="topic_count_" suffix=topicTrackingState.filter count=topicTrackingState.incomingCount}}
|
||||
{{i18n 'click_to_show'}}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
.show-more {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
&.has-topics {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
}
|
||||
}
|
||||
|
||||
.list-controls {
|
||||
|
|
Loading…
Reference in New Issue