make active notifications easier to see in the list
diff --git a/Allura/allura/templates/site_admin_site_notifications_list.html b/Allura/allura/templates/site_admin_site_notifications_list.html
index b289c35..dce9e65 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 %}