Hi Gurus,
I am new in adf and using jdev 11.1.2.3.
I have created a new skin and override the decorative box for all themes. It is working fine for medium and light theme but for dark and contentBody it is not applying style. Here is my css
af|decorativeBox[theme="dark"]{
background-color: #D71142;
}
af|decorativeBox::center[theme="dark"]{
background-color: #D71142;
}
af|decorativeBox::center[theme="medium"]{
background-color: #D71142;
}
af|decorativeBox[theme="medium"]{
background-color: #D71142;
}
af|decorativeBox::center[theme="contentBody"]{
background-color: #D71142;
}
af|decorativeBox[theme="contentBody"]{
background-color: #D71142;
}
af|decorativeBox::center[theme="light"]{
background-color: #D71142;
}
af|decorativeBox[theme="light"]{
background-color: #D71142;
}
Please advice .....
Thanks