The entire notification when there are new topics is clickable

This commit is contained in:
Neil Lalonde 2013-11-05 16:56:32 -05:00
parent adba0c2996
commit 8838b555cd
3 changed files with 11 additions and 4 deletions

View File

@ -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>

View File

@ -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>

View File

@ -58,3 +58,10 @@
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
// Clickable elements
// --------------------------------------------------
.clickable {
cursor: pointer;
}