Git Product home page Git Product logo

cobalt's People

Contributors

j15e avatar

Stargazers

 avatar

Watchers

 avatar  avatar

cobalt's Issues

Deprecated selector in `cobalt/index.less`

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

  • .editor .punctuation:not(.punctuation.definition.string,.punctuation.definition.comment) => .editor .syntax--punctuation:not(.punctuation.definition.string,.punctuation.definition.comment)

  • .editor .constant => .editor .syntax--constant

  • .editor .entity => .editor .syntax--entity

  • .editor .keyword => .editor .syntax--keyword

  • .editor .storage => .editor .syntax--storage

  • .editor .string => .editor .syntax--string

  • .editor .comment => .editor .syntax--comment

  • .editor .support => .editor .syntax--support

  • .editor .variable => .editor .syntax--variable

  • .editor .variable.language => .editor .syntax--variable.syntax--language

  • .editor .meta.function-call => .editor .syntax--meta.syntax--function-call

  • .editor .invalid => .editor .syntax--invalid

  • .editor .text .source, .editor .string.unquoted.heredoc, .editor .source .source => .editor .syntax--text .syntax--source, .editor .syntax--string.syntax--unquoted.syntax--heredoc, .editor .syntax--source .syntax--source

  • .editor .entity.other.inherited-class => .editor .syntax--entity.syntax--other.syntax--inherited-class

  • .editor .string.quoted .source => .editor .syntax--string.syntax--quoted .syntax--source

  • .editor .string .constant => .editor .syntax--string .syntax--constant

  • .editor .string.regexp => .editor .syntax--string.syntax--regexp

  • .editor .string .variable => .editor .syntax--string .syntax--variable

  • .editor .support.function => .editor .syntax--support.syntax--function

  • .editor .support.constant => .editor .syntax--support.syntax--constant

  • .editor .support.type.exception => .editor .syntax--support.syntax--type.syntax--exception

  • .editor .support.type.property-name.css => .editor .syntax--support.syntax--type.syntax--property-name.syntax--css

  • .editor .meta.preprocessor.c => .editor .syntax--meta.syntax--preprocessor.syntax--c

  • .editor .meta.preprocessor.c .keyword => .editor .syntax--meta.syntax--preprocessor.syntax--c .syntax--keyword

  • .editor .meta.sgml.html .editor .meta.doctype, .editor .meta.sgml.html .editor .meta.doctype .entity, .editor .meta.sgml.html .editor .meta.doctype .string, .editor .meta.xml-processing, .editor .meta.xml-processing .entity, .editor .meta.xml-processing .string => .editor .syntax--meta.syntax--sgml.syntax--html .editor .syntax--meta.syntax--doctype, .editor .syntax--meta.syntax--sgml.syntax--html .editor .syntax--meta.syntax--doctype .syntax--entity, .editor .syntax--meta.syntax--sgml.syntax--html .editor .syntax--meta.syntax--doctype .syntax--string, .editor .syntax--meta.xml-processing, .editor .syntax--meta.xml-processing .syntax--entity, .editor .syntax--meta.xml-processing .syntax--string

  • .editor .meta.tag, .editor .meta.tag .entity => .editor .syntax--meta.syntax--tag, .editor .syntax--meta.syntax--tag .syntax--entity

  • .editor .meta.selector.css .entity.name.tag => .editor .syntax--meta.syntax--selector.syntax--css .syntax--entity.syntax--name.syntax--tag

  • .editor .meta.selector.css .entity.other.attribute-name.id => .editor .syntax--meta.syntax--selector.syntax--css .syntax--entity.syntax--other.syntax--attribute-name.syntax--id

  • .editor .meta.selector.css .entity.other.attribute-name.class => .editor .syntax--meta.syntax--selector.syntax--css .syntax--entity.syntax--other.syntax--attribute-name.syntax--class

  • .editor .meta.property-group .support.constant.property-value.css, .editor .meta.property-value .support.constant.property-value.css => .editor .syntax--meta.property-group .syntax--support.syntax--constant.syntax--property-value.syntax--css, .editor .syntax--meta.syntax--property-value .syntax--support.syntax--constant.syntax--property-value.syntax--css

  • .editor .meta.preprocessor.at-rule .keyword.control.at-rule => .editor .syntax--meta.syntax--preprocessor.syntax--at-rule .syntax--keyword.syntax--control.syntax--at-rule

  • .editor .meta.property-value .support.constant.named-color.css, .editor .meta.property-value .constant => .editor .syntax--meta.syntax--property-value .syntax--support.syntax--constant.named-color.syntax--css, .editor .syntax--meta.syntax--property-value .syntax--constant

  • .editor .meta.constructor.argument.css => .editor .syntax--meta.syntax--constructor.syntax--argument.syntax--css

  • .editor .meta.diff, .editor .meta.diff.header => .editor .syntax--meta.syntax--diff, .editor .syntax--meta.syntax--diff.syntax--header

  • .editor .source .gfm => .editor .syntax--source .syntax--gfm

  • .editor .source .link .entity => .editor .syntax--source .syntax--link .syntax--entity

  • .editor .markup.deleted => .editor .syntax--markup.syntax--deleted

  • .editor .markup.changed => .editor .syntax--markup.syntax--changed

  • .editor .markup.inserted => .editor .syntax--markup.syntax--inserted

  • .editor .markup.raw => .editor .syntax--markup.syntax--raw

  • .editor .markup.quote => .editor .syntax--markup.syntax--quote

  • .editor .markup.list => .editor .syntax--markup.syntax--list

  • .editor .markup.bold => .editor .syntax--markup.syntax--bold

  • .editor .markup.italic => .editor .syntax--markup.syntax--italic

  • .editor .markup.heading => .editor .syntax--markup.syntax--heading

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.

beautify

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

  • .editor .punctuation:not(.punctuation.definition.string,.punctuation.definition.comment) => .editor .syntax--punctuation:not(.punctuation.definition.string,.punctuation.definition.comment)

  • .editor .constant => .editor .syntax--constant

  • .editor .entity => .editor .syntax--entity

  • .editor .keyword => .editor .syntax--keyword

  • .editor .storage => .editor .syntax--storage

  • .editor .string => .editor .syntax--string

  • .editor .comment => .editor .syntax--comment

  • .editor .support => .editor .syntax--support

  • .editor .variable => .editor .syntax--variable

  • .editor .variable.language => .editor .syntax--variable.syntax--language

  • .editor .meta.function-call => .editor .syntax--meta.syntax--function-call

  • .editor .invalid => .editor .syntax--invalid

  • .editor .text .source, .editor .string.unquoted.heredoc, .editor .source .source => .editor .syntax--text .syntax--source, .editor .syntax--string.syntax--unquoted.syntax--heredoc, .editor .syntax--source .syntax--source

  • .editor .entity.other.inherited-class => .editor .syntax--entity.syntax--other.syntax--inherited-class

  • .editor .string.quoted .source => .editor .syntax--string.syntax--quoted .syntax--source

  • .editor .string .constant => .editor .syntax--string .syntax--constant

  • .editor .string.regexp => .editor .syntax--string.syntax--regexp

  • .editor .string .variable => .editor .syntax--string .syntax--variable

  • .editor .support.function => .editor .syntax--support.syntax--function

  • .editor .support.constant => .editor .syntax--support.syntax--constant

  • .editor .support.type.exception => .editor .syntax--support.syntax--type.syntax--exception

  • .editor .support.type.property-name.css => .editor .syntax--support.syntax--type.syntax--property-name.syntax--css

  • .editor .meta.preprocessor.c => .editor .syntax--meta.syntax--preprocessor.syntax--c

  • .editor .meta.preprocessor.c .keyword => .editor .syntax--meta.syntax--preprocessor.syntax--c .syntax--keyword

  • .editor .meta.sgml.html .editor .meta.doctype, .editor .meta.sgml.html .editor .meta.doctype .entity, .editor .meta.sgml.html .editor .meta.doctype .string, .editor .meta.xml-processing, .editor .meta.xml-processing .entity, .editor .meta.xml-processing .string => .editor .syntax--meta.syntax--sgml.syntax--html .editor .syntax--meta.syntax--doctype, .editor .syntax--meta.syntax--sgml.syntax--html .editor .syntax--meta.syntax--doctype .syntax--entity, .editor .syntax--meta.syntax--sgml.syntax--html .editor .syntax--meta.syntax--doctype .syntax--string, .editor .syntax--meta.xml-processing, .editor .syntax--meta.xml-processing .syntax--entity, .editor .syntax--meta.xml-processing .syntax--string

  • .editor .meta.tag, .editor .meta.tag .entity => .editor .syntax--meta.syntax--tag, .editor .syntax--meta.syntax--tag .syntax--entity

  • .editor .meta.selector.css .entity.name.tag => `.editor .syntax--meta.syntax--selector.syntax-

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.