mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
FIX: Shouldn't overwrite styles in emails that we explicitly set, like category
colors.
This commit is contained in:
@ -18,7 +18,8 @@ module Email
|
||||
def add_styles(node, new_styles)
|
||||
existing = node['style']
|
||||
if existing.present?
|
||||
node['style'] = "#{existing}; #{new_styles}"
|
||||
# merge styles
|
||||
node['style'] = "#{new_styles}; #{existing}"
|
||||
else
|
||||
node['style'] = new_styles
|
||||
end
|
||||
|
Reference in New Issue
Block a user