How to add locale aware CSS to an individual component in ADF Faces.
- by mark.yvanovich@oracle.com
When creating a skin in ADF Faces, it's (relatively) easy to add locale aware CSS using the :rtl psuedo-class on the end of a skinning key. Example:af|inputListOfValues::content { padding-left: 3px;}af|inputListOfValues::content:rtl { padding-left: 0px; padding-right: 3px;}In this example, we want some padding before the…