summaryrefslogtreecommitdiffstats
path: root/app/views/mailer/layout.text.html.rhtml
blob: c95c945015e54f6780f049efb82dae57d5071a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<html>
<head>
<style>
body {
  font-family: Verdana, sans-serif;
  font-size: 0.8em;
  color:#484848;
}
h1 {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1.2em;
  margin: 0px;
}
a, a:link, a:visited {
  color: #2A5685;
}
a:hover, a:active {
  color: #c61a1a;
}
hr {
  width: 100%;
  height: 1px;
  background: #ccc;
  border: 0;
}
.footer {
  font-size: 0.8em;
  font-style: italic;
}
</style>
</head>
<body>
<%= yield %>
<hr />
<span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.emails_footer) %></span>
</body>
</html>