Skip to content

Commit

Permalink
make active notifications easier to see in the list
Browse files Browse the repository at this point in the history
  • Loading branch information
brondsem committed Feb 12, 2024
1 parent 61e1737 commit 573e81e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</tr>
</thead>
{% for note in notifications %}
<tr>
<tr {% if note.active %}class="active"{% endif %}>
<td><small>{{ note.active }}</small></td>
<td><small>{{ note.impressions}}</small></td>
<td><small class="tooltip" title="{{ note.content }}">{{ note.content|truncate(50) }}</small></td>
Expand All @@ -68,6 +68,10 @@
td {
max-width: 200px;
}
#site_notifications tr.active {
font-weight: bold;
background: lightcyan;
}
</style>
{% endblock %}

Expand Down

0 comments on commit 573e81e

Please sign in to comment.