@platform support for skinning icons ------------------------------------ Key: ADFFACES-484 URL: https://issues.apache.org/jira/browse/ADFFACES-484 Project: MyFaces ADF-Faces Issue Type: Improvement Components: Skinning Affects Versions: 1.0.1-incubating-core-SNAPSHOT Reporter: Jeanne Waldman Fix For: 1.0.1-incubating-core-SNAPSHOT
We have @platform support for skin selectors that are not icons, but not for icons. windows, macos, linux, solaris, ppc af|foo::bar-icon { content: url(...); margin-left: 2px } @platform windows { af|foo::bar-icon { margin-left: 5px } } What we have to do now is introduce a styleclass that goes around the icon in a span. af|foo::bar-icon { content: url(...); } af|foo::bar-icon-style { margin-left: 2px } @agent windows { af|foo::bar-icon-style { margin-left: 5px } } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.