c9s

Results 398 issues of c9s

https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-child

CSS4 Spec

- [ ] Translate `peek()` then `if .... { parser.next() }` to `parser.accept(...)`

Optimization

- [x] ParseMixinStatement - [x] ParseMixinName - [x] ParseMixinArguments - [x] Variable Arguments - [ ] Register mixin symbol table to global context for look up. - [ ] Reduce...

Feature
SASS Spec

Feature
Core

Reference: http://www.w3.org/TR/css3-selectors/ - [ ] Universal selectors and namespaces http://www.w3.org/TR/css3-selectors/#univnmsp - [ ] Attribute selectors and namespaces http://www.w3.org/TR/css3-selectors/#attrnmsp - [ ] :nth-child() pseudo-class: The nth grammar: ``` nth : S*...

CSS3 Spec

1. Proposal 1: Reuse the interpolation to expand the properties ``` sass #{$vendor}border-radius: 3px ``` 1. Proposal 2: Use new symbol to expand the properties ``` sass **border-radius: 3px; %border-radius:...

RFC

Reference: https://github.com/spf13/cobra ## Synopsis ``` sh c6 compile app.scss c6 watch app.scss c6 update app.scss ``` ## WIP - [ ] `CompileCommand` - [ ] `WatchCommand` - [ ] `UpdateCommand`

CLI

- [ ] ParseEachStatement Test Case: ``` sass @each $animal in puma, sea-slug, egret, salamander { .#{$animal}-icon { background-image: url('/images/#{$animal}.png'); } } ``` Test Case 2: ``` @each $animal, $color,...

SASS Spec

- [ ] Expanding `#{ "foo" "bar" }zoo` to `foozoo barzoo`

SASS Spec

``` CSS allows / to appear in property values as a way of separating numbers. Since SassScript is an extension of the CSS property syntax, it must support this, while...

SASS Spec