The entire notification when there are new topics is clickable
This commit is contained in:
parent
adba0c2996
commit
8838b555cd
|
@ -34,9 +34,9 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td colspan="9">
|
||||
<div class='alert alert-info'>
|
||||
<div class='alert alert-info clickable' {{action showInserted}}>
|
||||
{{countI18n new_topics_inserted countBinding="view.topicTrackingState.incomingCount"}}
|
||||
<a href='#' {{action showInserted}}>{{i18n show_new_topics}}</a>
|
||||
{{i18n show_new_topics}}
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -15,9 +15,9 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div class='alert alert-info'>
|
||||
<div class='alert alert-info' {{action showInserted}}>
|
||||
{{countI18n new_topics_inserted countBinding="view.topicTrackingState.incomingCount"}}
|
||||
<a href='#' {{action showInserted}}>{{i18n show_new_topics}}</a>
|
||||
{{i18n show_new_topics}}
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -58,3 +58,10 @@
|
|||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
// Clickable elements
|
||||
// --------------------------------------------------
|
||||
|
||||
.clickable {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue