Mobile Themes can be nested with a scope?
But I want to take it to the next level.
Would it be possible to add nested css scopes like this?
- <div id="parentContainer" class="theme1">
- <input type="button" data-theme="a"....
-
- <div id="childContainer" class="theme2"
- <input type="button" data-theme="a" ....
- </div>
- </div>
The problem is if I define themes like the follow css code, theme2 takes the values for theme1 due the order they are defined.
- .theme2 .ui-btn-up-a ...
- .....
- .theme1 .ui-btn-up-a ...
- ....
There is a solution to achieve this? There are plans to support this modular aproach in the future?
Thanks!