-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Imported styles are in the wrong order regarding non-imported styles #113
Comments
@spassarop - This has been open for several months. Is this fixable? (Easily?). |
This was fixed with #114, the imports are now in the right order. |
This fix will be included in the 1.6.5 release. |
Sorry for closing, I better leave that to you hehe |
No problem. I keep 'fixes' like this open so I know what to report in the release notes as fixed AND so anyone coming here can find the open issue and know it is still open in the latest release. |
You could also look at the issues by date range. That's what I do. Leaving
issues open is confusing to anyone who may want to contribute to your
project. But YMMV.
…-kevin
On Fri, Dec 31, 2021, 2:54 PM Dave Wichers ***@***.***> wrote:
No problem. I keep 'fixes' like this open so I know what to report in the
release notes as fixed AND so anyone coming here can find the open issue
and know it is still open in the latest release.
—
Reply to this email directly, view it on GitHub
<#113 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAO6PGY62OWJZMXOKCC4FX3UTYDAHANCNFSM5GSMMOVQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Closing this issue as these changes went out with the 1.6.5 release I just pushed. |
When
embedStyleSheets
istrue
and there are imported styles with@import
, the imported style result is at the end. This means that if there is a style tag like this:Results are like:
Leaving the
h1
style at the beginning when it should be at the end to override any previously defined style for that element in the imported style sheet.Current behavior is:
A way to change the order to prepend imported styles should be found, but also respecting the import order.
The text was updated successfully, but these errors were encountered: