diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-03-13 08:13:11 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-03-13 08:13:11 +0000 |
commit | 115ddb90b3ee5005db81d594c707e22fb875f87c (patch) | |
tree | 47a3a5621c6d8cf80a9d1a4e6ab07f9111ac8282 | |
parent | 6764839ede659afcd789e754adf220a37fd9e8ea (diff) | |
download | redmine-115ddb90b3ee5005db81d594c707e22fb875f87c.tar.gz redmine-115ddb90b3ee5005db81d594c707e22fb875f87c.zip |
Set font size in email notifications (#21487).
git-svn-id: http://svn.redmine.org/redmine/trunk@15228 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/layouts/mailer.html.erb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb index 6efbd33b6..4b95b01d8 100644 --- a/app/views/layouts/mailer.html.erb +++ b/app/views/layouts/mailer.html.erb @@ -3,12 +3,13 @@ <style> body { font-family: Verdana, sans-serif; - line-height: 1.45em; + font-size: 14px; + line-height: 1.4em; color: #222; } h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; } -h1 { font-size: 1.5em; line-height: 1.6em;} -h2, h3 { font-size: 1.3em; } +h1 { font-size: 1.3em; line-height: 1.4em;} +h2, h3 { font-size: 1.1em; } a, a:link, a:visited { color: #169;} a:hover, a:active { color: #c61a1a; } a.wiki-anchor { display: none; } |