From 1fb709362a56d891137d8bdc03b645796882061b Mon Sep 17 00:00:00 2001 From: scossar Date: Wed, 20 Jan 2016 11:03:13 -0800 Subject: [PATCH] fix border widths --- lib/email/styles.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/email/styles.rb b/lib/email/styles.rb index 56e0284411e..67447a10a00 100644 --- a/lib/email/styles.rb +++ b/lib/email/styles.rb @@ -214,7 +214,7 @@ module Email element.css('a').each do |inner| # we want the first footer link to be specially highlighted as IMPORTANT if footernum == 0 and linknum == 0 - inner['style'] = "background-color: #006699; color:#ffffff; border-top: 6px solid #006699; border-right: 8px solid #006699; border-bottom: 6px solid #006699; border-left: 6px solid #006699; display: inline-block;" + inner['style'] = "background-color: #006699; color:#ffffff; border-top: 4px solid #006699; border-right: 6px solid #006699; border-bottom: 4px solid #006699; border-left: 6px solid #006699; display: inline-block;" else inner['style'] = "color:#666;" end