Hi! I have some strange problems with css for this extension. I dont have triangle simbols before summary and I dont have triangle simbols without summary:
It turns out that without triange, if I add details code without summary - its just dissapear...
I try change triangles to + and - in FLARUM\vendor\fof\bbcode-details\less\forum.less but this doesn't change anything
Looks like default CSS(in forum.less) use some rule what did not involved:
.no-details {
details {
summary:before {
content: 'â–º ';
font-size: 12px;
}
&.open > summary:before {
content: 'â–¼ ';
}
}
}
I add this to custom css (in admin panel) and now triangles appeare before summary:
details {
summary:before {
content: 'â–· ';
}
&[open] > summary:before {
content: 'â–½ ';
}
}