You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to TiddlyWiki
That worked a treat. Thanks for the prompt help and for a great plugin -- I'm looking forward to exploring it.