Suppose I have a custom element named *my-element*. Then,


:host-context([dir=rtl].some-class) div { *...* }


gets translated into


[dir=rtl].some-class my-element div.my-element,

 my-element[dir=rtl].some-class div.my-element { ... }





:host-context([dir=rtl]) :host(.some-class) div { *...* }


gets translated into


[dir=rtl] my-element my-element.some-class div.my-element,

 my-element[dir=rtl] my-element.some-class div.my-element { ... }





Is there any way to achieve the following output?


[dir=rtl] my-element.some-class div.my-element { ... }

Follow Polymer on Google+: plus.google.com/107187849809354688692
--- 
You received this message because you are subscribed to the Google Groups 
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/43fc2e0e-06e5-441e-a517-712c7bdb751b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to