What's the best way to implement a dark theme that can be toggled in an ADF application?
I tried using the theme property on the af:document and css in the following way:
<af:document theme="dark">
<af:panelTabbed>...</af:panelTabbed>
</af:document>
af|panelTabbed[theme="dark"] {
color: red;
}
However, the css is not applied. In fact, when inspecting the page in the browser, I can't find any element with the theme attribute. Any reason why the theme property seems to be ignored? Perhaps there's a better way?
I'm using 12.2.1.2
Thanks,
Bill