-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for other CSS attribute constraints #208
Comments
Only numeric parameters, enumerated in units like px and vw are supported. |
Support for this syntax can certainly be added since colors can be reduced to numbers. Do you have other scenarios of using this syntax? The one you described can be met with a preprocessor, which can also manipulate the colors like |
The really GSSish use of this would be to bind things like opacity, colors, transforms and z-positions to various sizes, for responsive animation. |
@tobiasmuehl To be completely honest, I've discontinued use of GSS; I can close this issue, or we can leave it open for discussion as this is something I would like to see in the future, should I need to use GSS. I found that my project didn't need something as advanced to do some simple layout constraints. My thoughts...using this example: #foo {
myBGC == #fff;
background-color :== myBGC * #selector[top]
}
#selector {
position: absolute;
top == 0.5;
right == 1.0;
left == 0.0;
}
|
@taylorzane I guess you just went back to normal CSS + preprocessor? I feel like a constraint system that is based on solely linear algebra operations is unable to really work with colors. Colors come from a different world than layout, and I feel like they should be treated as their own datatype (yes, that's not what I said in the previous post). Writing something like
|
Yeah, just using Stylus as a preprocessor for now. I like the idea of using preprocessor-esque syntax for binding two together. There's certainly plenty of gotchas and room for improvement, but this is getting to the right direction. |
It is my understanding that GSS does not support this syntax:
I was unable to make this snippet work with any variation of variable declaration, type of color syntax used (i.e.
blue
,#fff
,rgb(1, 2, 3)
)Is binding to
background-color
and other color-related items supported? Or is that something I would have to handle myself manually, or by using another CSS/JS framework?The text was updated successfully, but these errors were encountered: