mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-15 08:29:24 +00:00
Merge styles case insensitive
This commit is contained in:
parent
308904d505
commit
3917be6c77
1 changed files with 2 additions and 2 deletions
|
@ -1759,14 +1759,14 @@ public class HtmlHelper {
|
|||
ElementSelectorImpl eselector = (ElementSelectorImpl) selector;
|
||||
if (tag == null
|
||||
? eselector.getLocalName() == null
|
||||
: tag.equals(eselector.getLocalName()))
|
||||
: tag.equalsIgnoreCase(eselector.getLocalName()))
|
||||
style = mergeStyles(style, srule.getStyle().getCssText());
|
||||
break;
|
||||
case Selector.SAC_CONDITIONAL_SELECTOR:
|
||||
ConditionalSelectorImpl cselector = (ConditionalSelectorImpl) selector;
|
||||
if (cselector.getCondition().getConditionType() == SAC_CLASS_CONDITION) {
|
||||
ClassConditionImpl ccondition = (ClassConditionImpl) cselector.getCondition();
|
||||
if (clazz.equals(ccondition.getValue()))
|
||||
if (clazz.equalsIgnoreCase(ccondition.getValue()))
|
||||
style = mergeStyles(style, srule.getStyle().getCssText());
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue