In my skin file (which is distributed by Skyros), I defined the rule as
.arrow_box:after { } .arrow_box:before { }
The main goal is to create an arrow at the top of the window, as shown in CSSArrowPlease .
Problem
When I launch the page, the pseudo-classes are not applied because they change to:
.arrow_box.p_AFAfter, .x1z2.p_AFAfter { } .arrow_box.p_AFBefore, .x1z2.p_AFBefore { }
Note how : converts to .p_AFAfter and .p_AFBefore . How can I avoid this?
I also tried to exit the selector:
.arrow_box\:after { }
But it was translated into
.arrow_box\.p_AFAfter, .x1z2.p_AFAfter { }
Any workaround for this? My jDeveloper version is 11.1.1.9.0
PS
DISABLE_CONTENT_COMPRESSION not an option, since I have no control over the web.xml on the server.
source share