##// END OF EJS Templates
Fixed: Entourage (and some old client) fails to correctly render notification styles (#1425)....
Jean-Philippe Lang -
r1586:a0f707e54b09
parent child
Show More
@@ -1,17 +1,37
1 <html>
1 <html>
2 <head>
2 <head>
3 <style>
3 <style>
4 body { font-family: Verdana, sans-serif; font-size: 0.8em; color:#484848; }
4 body {
5 body h1 { font-family: "Trebuchet MS", Verdana, sans-serif; font-size: 1.2em; margin: 0;}
5 font-family: Verdana, sans-serif;
6 a, a:link, a:visited{ color: #2A5685; }
6 font-size: 0.8em;
7 a:hover, a:active{ color: #c61a1a; }
7 color:#484848;
8 hr { width: 100%; height: 1px; background: #ccc; border: 0; }
8 }
9 .footer { font-size: 0.8em; font-style: italic; }
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 }
20 hr {
21 width: 100%;
22 height: 1px;
23 background: #ccc;
24 border: 0;
25 }
26 .footer {
27 font-size: 0.8em;
28 font-style: italic;
29 }
10 </style>
30 </style>
11 </head>
31 </head>
12 <body>
32 <body>
13 <%= yield %>
33 <%= yield %>
14 <hr />
34 <hr />
15 <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.emails_footer) %></span>
35 <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.emails_footer) %></span>
16 </body>
36 </body>
17 </html>
37 </html>
General Comments 0
You need to be logged in to leave comments. Login now