mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
make first email footer link specially highlighted
This commit is contained in:
parent
956e3ad208
commit
006bb06371
1 changed files with 10 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue