From 573e81e4b3b9af9f6f565afceec3544fa704236b Mon Sep 17 00:00:00 2001
From: Dave Brondsema <dbrondsema@slashdotmedia.com>
Date: Mon, 12 Feb 2024 12:24:46 -0500
Subject: [PATCH] make active notifications easier to see in the list

---
 .../templates/site_admin_site_notifications_list.html       | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Allura/allura/templates/site_admin_site_notifications_list.html b/Allura/allura/templates/site_admin_site_notifications_list.html
index b289c355c1..dce9e65041 100644
--- a/Allura/allura/templates/site_admin_site_notifications_list.html
+++ b/Allura/allura/templates/site_admin_site_notifications_list.html
@@ -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>
@@ -68,6 +68,10 @@
     td {
         max-width: 200px;
     }
+    #site_notifications tr.active {
+        font-weight: bold;
+        background: lightcyan;
+    }
 </style>
 {% endblock %}