How to stop shiraz hiding the view toolbar

55 views
Skip to first unread message

David Nebauer

unread,
Jan 8, 2019, 5:18:34 AM1/8/19
to TiddlyWiki
The shiraz plugin hides view toolbar buttons gracefully when the cursor 
is not hovering over a tiddler. What is the simplest way to suppress 
this behaviour? That is, how do I ensure view toolbar buttons are always 
visible?

If anyone is curious why I'd like to suppress this rather tidy 
behaviour, it's because I use a keyboard-driven browser (qutebrowser), 
and if the buttons are hidden there is no way for the browser to 
interact with them via keyboard.

David

Mohammad

unread,
Jan 8, 2019, 8:23:54 AM1/8/19
to TiddlyWiki
Hello David,
 I am the developer of Shiraz plugin. The hiding tiddler toolbar is a CSS setting.
This feature actually borrowed from Tobias Beer


Hack the below css tiddler:
$:/plugins/.mr/shiraz/stylesheet/tw-adjustment

Comment out below lines

/* Mouseover Toolbar Visibility: Tobias Beer*/
.tc-tiddler-frame .tc-titlebar button {
opacity: 0;
transition: opacity .5s ease-in-out;
}
.tc-tiddler-frame:hover .tc-titlebar button {
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
}

Good luck
Mohammad


David Nebauer

unread,
Jan 8, 2019, 8:49:46 AM1/8/19
to TiddlyWiki
That worked a treat. Thanks for the prompt help and for a great plugin -- I'm looking forward to exploring it.
Reply all
Reply to author
Forward
0 new messages