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