Target oxy_comment PIs with CSS rules?
Posted: Fri Mar 24, 2023 12:27 pm
Is it possible to target the processing instructions "oxy_comment_start" and/or "oxy_comment_end" with a CSS rule in a framework, or do those processing instructions have a special status, due to their nature of being firmly built into oXygen and therefore cannot be modified?
It seems with a CSS rule like the following I couldn't add anyting to the comment display in author mode of oXygen v25:
Also something as simple as this doesn't seem to work:
It seems with a CSS rule like the following I couldn't add anyting to the comment display in author mode of oXygen v25:
Code: Select all
oxy|processing-instruction[oxy_comment_start]::before {
color: red;
display: block;
content: "Here's my general message about your usage of oXygen comments..."
}
Code: Select all
oxy|processing-instruction[oxy_comment_start] {
display: none;
}