This repository was archived by the owner on Aug 7, 2023. It is now read-only.
Deprecated selector in linter-shellcheck/styles/note.less
#86
Labels
linter-shellcheck/styles/note.less
#86
In
linter-shellcheck/styles/note.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:atom-text-editor::shadow .linter-highlight.note, .linter-highlight.note
=>atom-text-editor.editor .linter-highlight.syntax--note, .linter-highlight.note
atom-text-editor::shadow .linter-highlight.note:not(.line-number), .linter-highlight.note:not(.line-number)
=>atom-text-editor.editor .linter-highlight.syntax--note:not(.line-number), .linter-highlight.note:not(.line-number)
atom-text-editor::shadow .linter-highlight.note .linter-gutter, .linter-highlight.note .linter-gutter
=>atom-text-editor.editor .linter-highlight.syntax--note .linter-gutter, .linter-highlight.note .linter-gutter
atom-text-editor::shadow .linter-highlight.note .region, .linter-highlight.note .region
=>atom-text-editor.editor .linter-highlight.syntax--note .region, .linter-highlight.note .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: