css.tmbundle icon indicating copy to clipboard operation
css.tmbundle copied to clipboard

TextMate support for CSS

Results 16 css.tmbundle issues
Sort by recently updated
recently updated
newest added

Selectors starting with square brackets like `[class*="wp-block"] { … }` are common in Gutenberg-enabled Wordpress theme CSS files. (They match any CSS classes starting with "wp-block…" without having to know...

It would be cool if in the symbols list, keywords like @media etc. could be highlighted (i.e. bold), reverse-indented or contrasted in another way. This would vastly improve overview when...

Includes the latest syntax from https://github.com/microsoft/vscode/blob/main/extensions/css/syntaxes/css.tmLanguage.json - Converted `css.tmLanguage.json` to `plist` - Added `@keyframes` to `tests.css` for validation of a rule that was previously not highlighted.

I use this color often. It would be very useful to have upstream support for it. --- This commit updates both the CSS grammar and the Insert Color command with...

Affects embedded CSS (e.g. in HTML or in a Markdown variant supporting code blocks with syntax highlighting) only: While typing a selector, the pattern for `meta.selector.css` would swallow up everything...

Removed some duplicate values from a recent commit. Created a seperate definitions for steps(), calc() and cubic-bezier() functions. The syntax for these functions where highlighting without brackets.

## Live example **Markdown** `````` md ```css :root { --ThemeColor: #3c790a; --primaryColor: #b4d455; } ui-widget { background-color: var(--ThemeColor); color: var(--primaryColor); } `````` ``` css :root { --ThemeColor: #3c790a; --primaryColor: #b4d455;...

While reading through CSS file I noticed that `svg` tag was not colored as others: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L58 ![screenshot from 2014-12-23 15 07 25](https://cloud.githubusercontent.com/assets/1423570/5820410/cae240ba-a0d5-11e4-9d54-b7097ff7f907.png) It seems that `svg` is missing in this...