mailer.html.erb
53 lines
| 1.4 KiB
| text/plain
|
TextLexer
|
r864 | <html> | ||
<head> | ||||
<style> | ||||
|
r1586 | body { | ||
font-family: Verdana, sans-serif; | ||||
|
r14846 | font-size: 14px; | ||
line-height: 1.4em; | ||||
|
r14644 | color: #222; | ||
|
r1586 | } | ||
|
r2404 | h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; } | ||
|
r14846 | h1 { font-size: 1.3em; line-height: 1.4em;} | ||
h2, h3 { font-size: 1.1em; } | ||||
|
r14644 | a, a:link, a:visited { color: #169;} | ||
|
r2404 | a:hover, a:active { color: #c61a1a; } | ||
a.wiki-anchor { display: none; } | ||||
|
r11623 | fieldset.attachments {border-width: 1px 0 0 0;} | ||
|
r1586 | hr { | ||
width: 100%; | ||||
height: 1px; | ||||
background: #ccc; | ||||
border: 0; | ||||
|
r14644 | margin: 1.2em 0; | ||
|
r1586 | } | ||
|
r11623 | span.footer { | ||
|
r1586 | font-size: 0.8em; | ||
font-style: italic; | ||||
} | ||||
|
r14973 | blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 1.2em;} | ||
blockquote blockquote { margin-left: 0;} | ||||
|
r15013 | pre, code {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;} | ||
pre { | ||||
margin: 1em 1em 1em 1.6em; | ||||
padding: 8px; | ||||
background-color: #fafafa; | ||||
border: 1px solid #e2e2e2; | ||||
border-radius: 3px; | ||||
width:auto; | ||||
overflow-x: auto; | ||||
overflow-y: hidden; | ||||
} | ||||
|
r864 | </style> | ||
</head> | ||||
<body> | ||||
|
r11491 | <% if Setting.emails_header.present? -%> | ||
|
r8774 | <span class="header"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_header).html_safe %></span> | ||
|
r11491 | <% end -%> | ||
|
r864 | <%= yield %> | ||
<hr /> | ||||
|
r11491 | <% if Setting.emails_footer.present? -%> | ||
|
r8774 | <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer).html_safe %></span> | ||
|
r11491 | <% end -%> | ||
|
r864 | </body> | ||
</html> | ||||