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