diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-03 12:21:08 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-03-03 16:49:54 +0100 |
commit | 289f64b1919befefe90e8c510b468268cdf50230 (patch) | |
tree | 1617d3cb4f51715334e5996c75207e683b3ddaba /core | |
parent | ccf2bf74ea7136b34a9610efdb197a24448bf557 (diff) | |
download | nextcloud-server-289f64b1919befefe90e8c510b468268cdf50230.tar.gz nextcloud-server-289f64b1919befefe90e8c510b468268cdf50230.zip |
mail template: remove off-white background color to better blend into mail client
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/mail.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/templates/mail.php b/core/templates/mail.php index 4fa54aa5283..80ea3b8604b 100644 --- a/core/templates/mail.php +++ b/core/templates/mail.php @@ -7,10 +7,10 @@ <img src="<?php print_unescaped(OC_Helper::makeURLAbsolute(image_path('', 'logo-mail.gif'))); ?>" alt="<?php p($theme->getName()); ?>"/> </td> </tr> -<tr><td bgcolor="#f8f8f8" colspan="2"> </td></tr> +<tr><td colspan="2"> </td></tr> <tr> -<td bgcolor="#f8f8f8" width="20px"> </td> -<td bgcolor="#f8f8f8" style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;"> +<td width="20px"> </td> +<td style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;"> <?php print_unescaped($l->t('Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href="%s">View it!</a><br><br>', array($_['user_displayname'], $_['filename'], $_['link']))); if ( isset($_['expiration']) ) { @@ -21,17 +21,17 @@ p($l->t('Cheers!')); ?> </td> </tr> -<tr><td bgcolor="#f8f8f8" colspan="2"> </td></tr> +<tr><td colspan="2"> </td></tr> <tr> -<td bgcolor="#f8f8f8" width="20px"> </td> -<td bgcolor="#f8f8f8" style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;">--<br> +<td width="20px"> </td> +<td style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;">--<br> <?php p($theme->getName()); ?> - <?php p($theme->getSlogan()); ?> <br><a href="<?php print_unescaped($theme->getBaseUrl()); ?>"><?php print_unescaped($theme->getBaseUrl());?></a> </td> </tr> <tr> -<td bgcolor="#f8f8f8" colspan="2"> </td> +<td colspan="2"> </td> </tr> </table> </td></tr> |