Update HtmlTemplateGenerator.cs

pull/2680/head
d1slact0r 6 years ago committed by GitHub
parent 9943a1b5a5
commit 27e15a76bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -50,10 +50,10 @@ namespace Ombi.Schedule.Jobs.Ombi
protected virtual void AddTitle(StringBuilder sb, string url, string title)
{
sb.Append("<tr class=\"title\" valign=\"top\" style=\"font-family: 'Open Sans', Helvetica, Arial, sans-serif;font-size: 1.3rem;line-height: 1.4rem;vertical-align: top;max-width: 320px;overflow: hidden;text-overflow: ellipsis;display: block;margin: 0;height: 100%;min-height: 20px;max-height: 45px; \">");
sb.Append("<tr class=\"title\" valign=\"top\" style=\"font-family: 'Open Sans', Helvetica, Arial, sans-serif;font-size: 1.3rem;line-height: 1.4rem;vertical-align: top;max-width: 320px;white-space: normal;display: block;margin: 0;height: 100%;min-height: 20px;max-height: 45px; \">");
sb.Append("<td>");
if(url.HasValue()) sb.AppendFormat("<a href=\"{0}\" target=\"_blank\" style=\"text-decoration: none; font-weight: 400; color: #ff761b;\">", url);
sb.AppendFormat("<h1 style=\"color: #ff761b;font-family: 'Open Sans', Helvetica, Arial, sans-serif;font-weight: 400;line-height: 1.4rem;font-size: 1.3rem;margin: 0;text-transform: capitalize;\" >{0}</h1>", title);
sb.AppendFormat("<h1 style=\"font-family: 'Open Sans', Helvetica, Arial, sans-serif;font-size: 1.3rem;line-height: 1.4rem;vertical-align: top;max-width: 320px;white-space: normal;display: block;margin: 0;height: 100%;min-height: 20px;max-height: 45px;\" >{0}</h1>", title);
if (url.HasValue()) sb.Append("</a>");
sb.Append("</td>");
sb.Append("</tr>");

Loading…
Cancel
Save