Results 107 issues of Chris Eppstein

I have become fond of CoffeeScript's ability to declare variables that have the same value in this manner: ``` someVariable: anotherVariable: "someValue" ``` I would like the ability to declare...

enhancement
help wanted

There's a way to compute dependencies efficiently and reliably on a first pass compile that would allow for the second pass to be optimized without needing to statically analyze the...

enhancement
planned

I think the default behavior of & at the root context should be a no-op. It should only be an error if the resulting styles are invalid. Mixins like this:...

enhancement
planned
help wanted

I think we need a function to check whether a sass value can be reasonably treated like a type specified. Basically, this returns false if `assert_type` in a ruby-based sass...

enhancement
planned
help wanted

https://github.com/sass/sass/issues/2004

enhancement

http://www.w3.org/TR/CSS21/fonts.html#font-shorthand Examples from the w3c: ``` p { font: 12px/14px sans-serif; } p { font: x-large/110% "New Century Schoolbook", serif; } p { font: normal small-caps 120%/120% fantasy; } ```...

This code gives an error: ``` @base: 12px / 1em; div { width: 16px / @base; } ``` When it would generate valid CSS: ``` div {width: 1.333em;} ``` Ditto...

The runtime performance of hmp is killing me in development mode. How can we make this better? Code generation maybe? I'm willing to help build it.

We need to update `css-property-parser` with the latest support for properties and handle unknown properties transparently.

https://twitter.com/chriseppstein/status/1204121630965764096 It seems like idents where the first digit is the least significant compresses better. Need to verify this with actual CSS files.