diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-02-14 18:32:11 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-02-14 18:32:11 +0000 |
commit | 1c2cdedf19feadfce5cddad683604b156105a5cd (patch) | |
tree | 44c7c81f33ebadab61e7d8f17deddbcae025cbdc /app/views/mailer | |
parent | f9c9b054babea460fae3bf5341d9720493d9428c (diff) | |
download | redmine-1c2cdedf19feadfce5cddad683604b156105a5cd.tar.gz redmine-1c2cdedf19feadfce5cddad683604b156105a5cd.zip |
Fixes headings style in html emails (#2739).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2465 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/mailer')
-rw-r--r-- | app/views/mailer/layout.text.html.rhtml | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/app/views/mailer/layout.text.html.rhtml b/app/views/mailer/layout.text.html.rhtml index 12fb654d6..83d967864 100644 --- a/app/views/mailer/layout.text.html.rhtml +++ b/app/views/mailer/layout.text.html.rhtml @@ -6,17 +6,12 @@ body { 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; -} +h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; } +h1 { font-size: 1.2em; } +h2, h3 { font-size: 1.1em; } +a, a:link, a:visited { color: #2A5685;} +a:hover, a:active { color: #c61a1a; } +a.wiki-anchor { display: none; } hr { width: 100%; height: 1px; |