To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / layouts / mailer.html.erb @ 912:5e80956cc792
History | View | Annotate | Download (761 Bytes)
| 1 | 909:cbb26bc654de | Chris | <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 | hr {
|
||
| 16 | width: 100%;
|
||
| 17 | height: 1px;
|
||
| 18 | background: #ccc;
|
||
| 19 | border: 0;
|
||
| 20 | }
|
||
| 21 | .footer {
|
||
| 22 | font-size: 0.8em;
|
||
| 23 | font-style: italic;
|
||
| 24 | }
|
||
| 25 | </style>
|
||
| 26 | </head>
|
||
| 27 | <body>
|
||
| 28 | <span class="header"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_header) %></span> |
||
| 29 | <%= yield %>
|
||
| 30 | <hr /> |
||
| 31 | <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer) %></span> |
||
| 32 | </body>
|
||
| 33 | </html> |