##// END OF EJS Templates
Fixes headings style in html emails (#2739)....
Jean-Philippe Lang -
r2404:1c2cdedf19fe
parent child
Show More
@@ -1,37 +1,32
1 <html>
1 <html>
2 <head>
2 <head>
3 <style>
3 <style>
4 body {
4 body {
5 font-family: Verdana, sans-serif;
5 font-family: Verdana, sans-serif;
6 font-size: 0.8em;
6 font-size: 0.8em;
7 color:#484848;
7 color:#484848;
8 }
8 }
9 h1 {
9 h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; }
10 font-family: "Trebuchet MS", Verdana, sans-serif;
10 h1 { font-size: 1.2em; }
11 font-size: 1.2em;
11 h2, h3 { font-size: 1.1em; }
12 margin: 0px;
12 a, a:link, a:visited { color: #2A5685;}
13 }
13 a:hover, a:active { color: #c61a1a; }
14 a, a:link, a:visited {
14 a.wiki-anchor { display: none; }
15 color: #2A5685;
16 }
17 a:hover, a:active {
18 color: #c61a1a;
19 }
20 hr {
15 hr {
21 width: 100%;
16 width: 100%;
22 height: 1px;
17 height: 1px;
23 background: #ccc;
18 background: #ccc;
24 border: 0;
19 border: 0;
25 }
20 }
26 .footer {
21 .footer {
27 font-size: 0.8em;
22 font-size: 0.8em;
28 font-style: italic;
23 font-style: italic;
29 }
24 }
30 </style>
25 </style>
31 </head>
26 </head>
32 <body>
27 <body>
33 <%= yield %>
28 <%= yield %>
34 <hr />
29 <hr />
35 <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer) %></span>
30 <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer) %></span>
36 </body>
31 </body>
37 </html>
32 </html>
General Comments 0
You need to be logged in to leave comments. Login now