0.3.0
- Update meta for beta 16
Updating
composer require fof/bbcode-details:"*"
composer require fof/bbcode-details:"*"
IanM Found a bug in the latest version. All details here:
https://discuss.flarum.org/d/27044-cant-put-a-details-tag-in-a-quote-in-beta-16
Let me know if you need anymore details.
FriendsOfFlarum @[deleted] could you create a css that we can use to make the header title look like a button an drop up and down arrow like this photo
Braden Do you mean something like this ?
https://metabullet.com/p/8-faq
Braden Thanks very much. It's a CSS only solution but put together as a page. I'll post this tomorrow as there's a fair amount and I'm on mobile at present.
@[deleted] Can you share metabullet css it is more proper
is it compatible still. Tested?
datitisev
Hey there, could you perhaps help me out with an issue I´m having. I would like to format the description title itself, but any kind of code I use is being applied only to the hidden text, not the title.
Any suggestions?
RichardBanic The way the current BBCode markup works, I think it's just not supported by TextFormatter to have formatting in the bbcode tag attributes (or whatever they're called, in the title=...
. I might be wrong, but this is my first thought.
I installed this extension but I couldn't find how to use it?
[DETAILS title={TEXT1;optional}]{TEXT2}[/DETAILS]
So:
[details title=some title]other stuff comes here[/details]
how can I add this upsidedown triangle?
murdocklawless That arrow is added by the browser, I believe. The down arrow appears when the details element has been expanded.
You might be able to use the following CSS:
summary:before {
content: "+";
color: red;
float: left;
margin-right: 10px;
details[open] & {
content: "-";
}
}
Braden Looks like the following should work
summary::-webkit-details-marker {
display: none
}
Code obtained from a StackOverflow answer
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: 'â–½ ';
}
}
taravasya what browser are you using? Did you try different browsers? Did it work at some point in the past or on a different forum with the same browser?