mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 01:56:20 +00:00
f3b5dc530e
There’s not much to making the toolbar button styles switchable: the change to the PageTemplate introduces a new configuration tiddler that controls the button styling. Most of this commit is the user interface for changing that setting, including the translatable text. I think this again demonstrates that we need to be very selective about which configuration options have a UI included in the core. Otherwise, a few dozen more of these settings will start to become a significant fraction of the core.
13 lines
503 B
Plaintext
13 lines
503 B
Plaintext
title: $:/core/ui/ControlPanel/Settings/ToolbarButtonStyle
|
|
tags: $:/tags/ControlPanel/Settings
|
|
caption: {{$:/language/ControlPanel/Settings/ToolbarButtonStyle/Caption}}
|
|
|
|
\define lingo-base() $:/language/ControlPanel/Settings/ToolbarButtonStyle/
|
|
<$link to="$:/config/Toolbar/ButtonClass"><<lingo "Hint">></$link>
|
|
|
|
<$select tiddler="$:/config/Toolbar/ButtonClass">
|
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/ToolbarButtonStyle]]">
|
|
<option value={{!!text}}>{{!!caption}}</option>
|
|
</$list>
|
|
</$select>
|