diff options
-rw-r--r-- | templates/web/default/admin/body.html | 6 | ||||
-rw-r--r-- | web/cobrands/sass/_layout.scss | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/templates/web/default/admin/body.html b/templates/web/default/admin/body.html index 120a07da9..8fd11d694 100644 --- a/templates/web/default/admin/body.html +++ b/templates/web/default/admin/body.html @@ -44,11 +44,11 @@ <th>[% loc('Confirm') %]</th> </tr> [% WHILE ( contact = contacts.next ) %] - <tr> - <td><a href="[% c.uri_for( 'body_edit', body_id, contact.category ) %]">[% contact.category %]</a></td> + <tr [% IF contact.deleted %]class="is-deleted"[% END %]> + <td class="contact-category"><a href="[% c.uri_for( 'body_edit', body_id, contact.category ) %]">[% contact.category %]</a></td> <td>[% contact.email | html %]</td> <td>[% IF contact.confirmed %][% loc('Yes') %][% ELSE %][% loc('No') %][% END %]</td> - <td>[% IF contact.deleted %][% loc('Yes') %][% ELSE %][% loc('No') %][% END %]</td> + <td>[% IF contact.deleted %]<strong>[% loc('Yes') %]</strong>[% ELSE %][% loc('No') %][% END %]</td> <td>[% IF body.can_be_devolved && contact.send_method %][% loc('Yes') %][% ELSE %][% loc('No') %][% END %]</td> <td>[% contact.editor %]</td> <td>[% contact.note | html %]</td> diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 8bcb6fed6..4d32f6062 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -1032,6 +1032,12 @@ $button_bg_col: #a1a1a1; // also search bar (tables) border: none; padding: 3px 0.5em; } + tr.is-deleted { + background-color: #ffdddd; + td.contact-category { + text-decoration: line-through; + } + } } .fms-admin-warning, .fms-admin-info { padding: 1em; |