To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / layouts / mailer.html.erb @ 1591:63650ae64bf2

History | View | Annotate | Download (937 Bytes)

1
<html>
2
<head>
3
<style>
4
body {
5
  font-family: Verdana, sans-serif;
6
  font-size: 0.8em;
7
  color:#484848;
8
}
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; }
15
fieldset.attachments {border-width: 1px 0 0 0;}
16
hr {
17
  width: 100%;
18
  height: 1px;
19
  background: #ccc;
20
  border: 0;
21
}
22
span.footer {
23
  font-size: 0.8em;
24
  font-style: italic;
25
}
26
</style>
27
</head>
28
<body>
29
<% if Setting.emails_header.present? -%>
30
<span class="header"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_header).html_safe %></span>
31
<% end -%>
32
<%= yield %>
33
<hr />
34
<% if Setting.emails_footer.present? -%>
35
<span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer).html_safe %></span>
36
<% end -%>
37
</body>
38
</html>