##// END OF EJS Templates
Set font size in email notifications (#21487)....
Jean-Philippe Lang -
r14846:115ddb90b3ee
parent child
Show More
@@ -1,39 +1,40
1 1 <html>
2 2 <head>
3 3 <style>
4 4 body {
5 5 font-family: Verdana, sans-serif;
6 line-height: 1.45em;
6 font-size: 14px;
7 line-height: 1.4em;
7 8 color: #222;
8 9 }
9 10 h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; }
10 h1 { font-size: 1.5em; line-height: 1.6em;}
11 h2, h3 { font-size: 1.3em; }
11 h1 { font-size: 1.3em; line-height: 1.4em;}
12 h2, h3 { font-size: 1.1em; }
12 13 a, a:link, a:visited { color: #169;}
13 14 a:hover, a:active { color: #c61a1a; }
14 15 a.wiki-anchor { display: none; }
15 16 fieldset.attachments {border-width: 1px 0 0 0;}
16 17 hr {
17 18 width: 100%;
18 19 height: 1px;
19 20 background: #ccc;
20 21 border: 0;
21 22 margin: 1.2em 0;
22 23 }
23 24 span.footer {
24 25 font-size: 0.8em;
25 26 font-style: italic;
26 27 }
27 28 </style>
28 29 </head>
29 30 <body>
30 31 <% if Setting.emails_header.present? -%>
31 32 <span class="header"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_header).html_safe %></span>
32 33 <% end -%>
33 34 <%= yield %>
34 35 <hr />
35 36 <% if Setting.emails_footer.present? -%>
36 37 <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer).html_safe %></span>
37 38 <% end -%>
38 39 </body>
39 40 </html>
General Comments 0
You need to be logged in to leave comments. Login now