Re: [FlexJS] How to manage className correctly

2016-11-10 Thread Carlos Rovira
filled here: https://issues.apache.org/jira/browse/FLEX-35171 2016-11-10 23:54 GMT+01:00 Carlos Rovira : > Hi Alex, > > #ff did not work either. I'll fill a bug for this > > 2016-11-10 22:25 GMT+01:00 Alex Harui : > >> The compiler does not copy input CSS text directly to the output CSS file.

Re: [FlexJS] How to manage className correctly

2016-11-10 Thread Carlos Rovira
Hi Alex, #ff did not work either. I'll fill a bug for this 2016-11-10 22:25 GMT+01:00 Alex Harui : > The compiler does not copy input CSS text directly to the output CSS file. > Instead, it tries to parse it into a data structure and generate the > final CSS file from that data structure.

Re: [FlexJS] How to manage className correctly

2016-11-10 Thread Alex Harui
The compiler does not copy input CSS text directly to the output CSS file. Instead, it tries to parse it into a data structure and generate the final CSS file from that data structure. The CSS parsing code that we got from Adobe only knew how to parse Flex-compatible CSS. I'm slowly teaching it

Re: [FlexJS] How to manage className correctly

2016-11-10 Thread Carlos Rovira
Hi Alex, I refactored MDL class selectors taking account of this and now is working ok, so now user can decorate with is own selectors. I only have one strange issue with a simple color style. I want to set a color:#fff If I put in a css class external selector, this is not applied (but rest of r

Re: [FlexJS] How to manage className correctly

2016-11-06 Thread Alex Harui
On 11/6/16, 3:19 PM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" wrote: >Hi, > >className in flexjs translates to class. >There's as well typeNames. > >If I write a component that uses some css class (in its definition), but I >want to add some new css rule in app instantiation...what'

[FlexJS] How to manage className correctly

2016-11-06 Thread Carlos Rovira
Hi, className in flexjs translates to class. There's as well typeNames. If I write a component that uses some css class (in its definition), but I want to add some new css rule in app instantiation...what's the recommended way to manage this situation? should I override the className UIBase meth