-
-
Notifications
You must be signed in to change notification settings - Fork 67
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
Deprecated selector in highlight-selected/styles/highlight-selected.less
#131
Comments
Any updates on this issue? |
I think #136 will fix this – maybe wait for Atom 1.13 stable? See When should I migrate my package? |
1.13 is now the main stable release |
I am on stable 1.13.0 (latest MacOS) and can confirm issue still exists. |
Also getting deprecation alerts from Atom & I'm on 1.13.0 |
Still Waiting |
Waiting for https://travis-ci.org/richrace/highlight-selected/jobs/191092635 to pass... |
Looks like just about all the 3rd party extensions are broken. I have seen several already that are getting the same error... |
Could you please share any 3rd party extensions. I'm only aware of minimap-highlight-selected |
Mine updated just fine yesterday |
In
highlight-selected/styles/highlight-selected.less
:Starting from Atom v1.13.0, the contents of
atom-text-editor
elements are no longer encapsulated within a shadow DOM boundary. This means you should stop using:host
and::shadow
pseudo-selectors, and prepend all your syntax selectors withsyntax--
. To prevent breakage with existing style sheets, Atom will automatically upgrade the following selectors::host atom-text-editor .highlight.highlight-selected .region, atom-text-editor atom-text-editor .highlight.highlight-selected .region, atom-text-editor::shadow atom-text-editor .highlight.highlight-selected .region
=>:host atom-text-editor .highlight.highlight-selected .region, atom-text-editor atom-text-editor .highlight.highlight-selected .region, atom-text-editor atom-text-editor .highlight.highlight-selected .region
:host .highlights .highlight-selected .region, atom-text-editor .highlights .highlight-selected .region, atom-text-editor::shadow .highlights .highlight-selected .region
=>:host .highlights .highlight-selected .region, atom-text-editor .highlights .highlight-selected .region, atom-text-editor .highlights .highlight-selected .region
:host .highlights .highlight-selected .region, atom-text-editor .highlights .highlight-selected .region, atom-text-editor::shadow .highlights .highlight-selected .region
=>:host .highlights .highlight-selected .region, atom-text-editor .highlights .highlight-selected .region, atom-text-editor .highlights .highlight-selected .region
:host .highlights .highlight-selected.background .region, atom-text-editor .highlights .highlight-selected.background .region, atom-text-editor::shadow .highlights .highlight-selected.background .region
=>:host .highlights .highlight-selected.background .region, atom-text-editor .highlights .highlight-selected.background .region, atom-text-editor .highlights .highlight-selected.syntax--background .region
:host .highlights .highlight-selected.light-theme .region, atom-text-editor .highlights .highlight-selected.light-theme .region, atom-text-editor::shadow .highlights .highlight-selected.light-theme .region
=>:host .highlights .highlight-selected.light-theme .region, atom-text-editor .highlights .highlight-selected.light-theme .region, atom-text-editor .highlights .highlight-selected.light-theme .region
:host .highlights .highlight-selected.light-theme.background .region, atom-text-editor .highlights .highlight-selected.light-theme.background .region, atom-text-editor::shadow .highlights .highlight-selected.light-theme.background .region
=>:host .highlights .highlight-selected.light-theme.background .region, atom-text-editor .highlights .highlight-selected.light-theme.background .region, atom-text-editor .highlights .highlight-selected.light-theme.syntax--background .region
Automatic translation of selectors will be removed in a few release cycles to minimize startup time. Please, make sure to upgrade the above selectors as soon as possible.
The text was updated successfully, but these errors were encountered: