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