From f83b719f0347931640475b9e5ee8d60bbc50fd6d Mon Sep 17 00:00:00 2001 From: Herve Saint-Amand Date: Fri, 27 Jan 2017 23:20:11 +0000 Subject: [PATCH] Set border=0 on that img IE9 shows a big nasty blue border on linked images if you don't specify border=0 --- app/views/notifier/_message_body.html.erb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/views/notifier/_message_body.html.erb b/app/views/notifier/_message_body.html.erb index 723bb84e5..d86d44133 100644 --- a/app/views/notifier/_message_body.html.erb +++ b/app/views/notifier/_message_body.html.erb @@ -1,4 +1,4 @@ - +
<%= link_to( @@ -7,7 +7,8 @@ alt: @author, title: @author, width: 50, - height: 50 + height: 50, + border: 0 ), user_url(@author, :host => SERVER_URL), :target => "_blank" -- 2.43.2