mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 10:17:18 +00:00
Fixed applying classes to elements
This commit is contained in:
parent
c7ce39cb54
commit
030f6dc5b1
1 changed files with 1 additions and 1 deletions
|
@ -1870,7 +1870,7 @@ public class HtmlHelper {
|
|||
}
|
||||
|
||||
for (String key : baseParams.keySet())
|
||||
if (!STYLE_NO_INHERIT.contains(key))
|
||||
if (!STYLE_NO_INHERIT.contains(key) || element)
|
||||
result.put(key, baseParams.get(key));
|
||||
|
||||
return TextUtils.join(";", result.values());
|
||||
|
|
Loading…
Reference in a new issue