make first email footer link specially highlighted

This commit is contained in:
Jeff Atwood 2016-01-08 02:14:58 -08:00
parent 956e3ad208
commit 006bb06371

View file

@ -206,11 +206,20 @@ module Email
end
def correct_footer_style
footernum = 0
@fragment.css('.footer').each do |element|
element['style'] = "color:#666;"
linknum = 0
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:#fff;padding:4px 6px;"
else
inner['style'] = "color:#666;"
end
linknum += 1
end
footernum += 1
end
end