diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-29 09:50:42 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-29 09:50:42 +0000 |
commit | a0f707e54b092f62aa0a04be9a80741c937ab3a5 (patch) | |
tree | 9c26ea8f6b60ba8b3b1b3ead8cea9d8207ae8286 /app/views/mailer | |
parent | 00593f2f345f51565535257cf183b004c1087a21 (diff) | |
download | redmine-a0f707e54b092f62aa0a04be9a80741c937ab3a5.tar.gz redmine-a0f707e54b092f62aa0a04be9a80741c937ab3a5.zip |
Fixed: Entourage (and some old client) fails to correctly render notification styles (#1425).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1600 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/mailer')
-rw-r--r-- | app/views/mailer/layout.text.html.rhtml | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/app/views/mailer/layout.text.html.rhtml b/app/views/mailer/layout.text.html.rhtml index b78e92bdd..c95c94501 100644 --- a/app/views/mailer/layout.text.html.rhtml +++ b/app/views/mailer/layout.text.html.rhtml @@ -1,12 +1,32 @@ <html> <head> <style> -body { font-family: Verdana, sans-serif; font-size: 0.8em; color:#484848; } -body h1 { font-family: "Trebuchet MS", Verdana, sans-serif; font-size: 1.2em; margin: 0;} -a, a:link, a:visited{ color: #2A5685; } -a:hover, a:active{ color: #c61a1a; } -hr { width: 100%; height: 1px; background: #ccc; border: 0; } -.footer { font-size: 0.8em; font-style: italic; } +body { + font-family: Verdana, sans-serif; + font-size: 0.8em; + color:#484848; +} +h1 { + font-family: "Trebuchet MS", Verdana, sans-serif; + font-size: 1.2em; + margin: 0px; +} +a, a:link, a:visited { + color: #2A5685; +} +a:hover, a:active { + color: #c61a1a; +} +hr { + width: 100%; + height: 1px; + background: #ccc; + border: 0; +} +.footer { + font-size: 0.8em; + font-style: italic; +} </style> </head> <body> |