atom-smalls icon indicating copy to clipboard operation
atom-smalls copied to clipboard

Deprecated selector in `smalls/styles/main.less`, smalls not working

Open kubaugustyn opened this issue 8 years ago • 0 comments

So smalls (I use smalls: start) is not working for me, can't say why. The only error atom showing me is below:

In smalls/styles/main.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 with syntax--. To prevent breakage with existing style sheets, Atom will automatically upgrade the following selectors:

  • atom-text-editor .smalls-label, atom-text-editor::shadow .smalls-label => atom-text-editor .smalls-label, atom-text-editor.editor .smalls-label

  • atom-text-editor .smalls-label.not-final, atom-text-editor::shadow .smalls-label.not-final => atom-text-editor .smalls-label.not-final, atom-text-editor.editor .smalls-label.not-final

  • atom-text-editor .smalls-label .decided, atom-text-editor::shadow .smalls-label .decided => atom-text-editor .smalls-label .decided, atom-text-editor.editor .smalls-label .decided

  • atom-text-editor .smalls-candidate .region, atom-text-editor::shadow .smalls-candidate .region => atom-text-editor .smalls-candidate .region, atom-text-editor.editor .smalls-candidate .region

  • atom-text-editor .smalls-flash .region, atom-text-editor::shadow .smalls-flash .region => atom-text-editor .smalls-flash .region, atom-text-editor.editor .smalls-flash .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.

kubaugustyn avatar Feb 13 '17 12:02 kubaugustyn