From 8e882ad145a8d4b2934a0bc751b183e6c19264a2 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Mon, 9 Jun 2014 15:28:03 -0400 Subject: [PATCH] CSS: Attempt to remove hairline border from android gmail blockquotes. --- 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 89398ed60b9..c848a5403e9 100644 --- a/lib/email/styles.rb +++ b/lib/email/styles.rb @@ -111,7 +111,7 @@ module Email def correct_first_body_margin @fragment.css('.body p').each do |element| - element['style'] = "margin-top:0;" + element['style'] = "margin-top:0; border: 0;" end end