Page 1 of 1

Can I override -oxy-append-content?

Posted: Thu Feb 20, 2020 2:28 am
by singlesourceror
Hello.
I am working with a DITA framework extension and I am trying to style a resourceID in my CSS. The element has a -oxy-append-content function in one of the core DITA stylesheets. I want to make the appended content go away and replace it with new content. Is there a way to do this?
Cheers,
Rob Hanna

Re: Can I override -oxy-append-content?

Posted: Thu Feb 20, 2020 11:14 am
by Radu
Hi Rob,

You can overwrite it with something like:

Code: Select all

*[class~="topic/resourceid"]:before{
 content: "test";
}
Regards,
Radu