diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-03 12:21:08 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-03 12:21:08 +0100 |
commit | 607f205bdae89086267eeaa18810017347d3592f (patch) | |
tree | 99f9e607f7e654f846db57136fadca4be7f175c9 /core | |
parent | 084050530cdaf045e2bea33ce956278c5448640d (diff) | |
download | nextcloud-server-607f205bdae89086267eeaa18810017347d3592f.tar.gz nextcloud-server-607f205bdae89086267eeaa18810017347d3592f.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 b8b0a2bfe96..c46fd6ab805 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 <strong>%s</strong> 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> |