Hi @JanJo ,
one could create a hamburger menu with the tag $:/tags/ViewToolbar
that shows all tiddler controls in a popup and is wrapped in a div with the class tc-tiddlyflex-shown-when-narrow
then you hide the page control buttons above a certain amount of columns:
.tc-tiddler-controls .tc-tiddlyflex-shown-when-narrow {
display: none;
}
<$list filter="[subfilter<tdff.tiddlyflex-enlist-columns>count[]compare:number:gteq[3]]" variable="column">
.tc-tiddlyflex-column-<<column>> .tc-tiddler-controls:not(.tc-tiddlyflex-shown-when-narrow) {
display: none;
}
.tc-tiddlyflex-column-<<column>> .tc-tiddler-controls .tc-tiddlyflex-shown-when-narrow {
display: block;
}
</$list>
I haven’t tested this though