diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2013-09-09 16:18:13 +0100 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2013-09-10 15:57:36 +0100 |
commit | 2aba77457a6f6f408b74540285356ceaa2a58679 (patch) | |
tree | 92f1463322cc423d89112c0aecebabb31d93cdb8 | |
parent | bd0e4f640a265eaaab1a90d2a64c1f5db6f81e87 (diff) |
[Zurich] Style the internal notes distinctively
-rw-r--r-- | templates/web/zurich/admin/header.html | 1 | ||||
-rw-r--r-- | templates/web/zurich/admin/list_updates.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/templates/web/zurich/admin/header.html b/templates/web/zurich/admin/header.html index be146f0e1..281b1de23 100644 --- a/templates/web/zurich/admin/header.html +++ b/templates/web/zurich/admin/header.html @@ -14,6 +14,7 @@ %] <style type="text/css"> .adminhidden { color: #666666; } + .admininternal { background-color: #eeeeff; } .active { background-color: #ffffee; cursor: pointer; } .error { color: red; } .overdue { background-color: #ffcccc; } diff --git a/templates/web/zurich/admin/list_updates.html b/templates/web/zurich/admin/list_updates.html index c475d839e..4e37ef943 100644 --- a/templates/web/zurich/admin/list_updates.html +++ b/templates/web/zurich/admin/list_updates.html @@ -8,7 +8,7 @@ <th>[% loc('Text') %]</th> </tr> [% FOREACH update IN updates -%] - <tr[% ' class="adminhidden"' IF update.state == 'hidden' || update.problem.state == 'hidden' %]> + <tr class="[% 'adminhidden' IF update.state == 'hidden' || update.problem.state == 'hidden' %] [% 'admininternal' IF update.extra.is_internal_note %]"> <td>[%- update.id %]</td> <td>[% PROCESS format_date this_date=update.created %] [% update.created.hms %]</td> <td>[% update.text | html %]</td> |