Patch Changes
-
Fix CSS import order when
enableCSSSelectoris false. (#609)When the
enableCSSSelectoroption is set to false, style rule priority is inversely related to@importorder(Lynx CSS engine has the incorrect behavior). Reversing the import order to maintain correct priority is required. For example:@import "0.css"; @import "1.css";
will convert to:
@import "1.css"; @import "0.css";