- From: Mike Wilson <mikewse@hotmail.com>
- Date: Tue, 24 Jun 2008 20:28:45 +0200
- To: "'David Hyatt'" <hyatt@apple.com>, "'CSS 3 W3C Group'" <www-style@w3.org>
David Hyatt wrote: > On Jun 24, 2008, at 4:34 AM, Mike Wilson wrote: > > > > Nice to see support for this kind of constructs. Did you consider > > adding support for reusing groups of multiple property assignments > > as well? > > > > Extending your syntax it could look something like this: > > > > @variables { > > myColor: #fe8d12; > > myVarGroup: { > > color: var(myColor); > > background-color; yellow; > > } > > } > > #elem1 { > > color: var(myColor); > > } > > #elem2 { > > vars(myVarGroup); > > } > > I don't think we should be nesting variable calls inside other > variable definitions. That's fine, but not the main point of my post. What do you think about supporting the multiple property assignments part of the example? : @variables { myVarGroup: { color: #fe8d12; background-color; yellow; } } #elem2 { vars(myVarGroup); } Best regards Mike Wilson
Received on Tuesday, 24 June 2008 18:29:36 UTC