Author mode css styling
Posted: Fri May 31, 2024 6:12 pm
I have an element that references other elements via the attribute <internalRef internalRefId=""/>. I want to return the name/text() of the matching @id. My css is below. If i specifically state the @internalRefId ( oxy_link-text(oxy_xpath("//*[@id = 'sup-0001']/name/text()"));), i get a value. But obviously it will return the same name for all internalRef. Can this be done?
Code: Select all
internalRef:before {
-oxy-link:oxy_concat('#',attr(internalRefId));
color : #000080 ;
content : url("../img/link.png")
""
oxy_combobox(edit, "@internalRefId", columns, 10)
oxy_link-text(oxy_xpath("//*[@id = @internalRefId]/name/text()"));
font-size : 16px ;
font-style : normal ;
font-weight : 400 ;
line-height : 120.00001% ;
text-decoration-color : #000080 ;
text-decoration-line : underline ;
text-decoration-style : solid ;
}