Open guidodamico opened 7 years ago
.
Patches welcome! Or is there a suggested way to re run the style migrator?
I’m not using atom lately so this is pretty low priority for me :)
On Tue, Jan 8, 2019 at 3:09 AM Juan-Carlos Quiroz notifications@github.com wrote:
.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/cartazio/for-latex-atom-theme/issues/4#issuecomment-452209352, or mute the thread https://github.com/notifications/unsubscribe-auth/AAAQwiouPYMSRCiRCuBDoYb95hZN6WgVks5vBFIggaJpZM4MAQbD .
In
ForLatex/index.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:.editor .search-results .marker .region
=>.editor .search-results .syntax--marker .region
.editor .search-results .marker.current-result .region
=>.editor .search-results .syntax--marker.current-result .region
.comment
=>.syntax--comment
.string
=>.syntax--string
.constant.character, .constant.other
=>.syntax--constant.syntax--character, .syntax--constant.syntax--other
.keyword
=>.syntax--keyword
.variable.parameter
=>.syntax--variable.syntax--parameter
.support.function
=>.syntax--support.syntax--function
.support.constant
=>.syntax--support.syntax--constant
.support.type, .support.class
=>.syntax--support.syntax--type, .syntax--support.syntax--class
.support.other.variable
=>.syntax--support.syntax--other.syntax--variable
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.