mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
eaf8558595
* Let PageControls buttons use v5.3.2 syntax * Rewrite buttons and actions * Omit whitespace & use function to avoid duplicating * Omit whitespace in conditional syntax * Define tf.get-tags function to avoid duplicated text substitution * Rewrite advanced search button * Add space in join operator * Rewrite buttons in plugins * Remove tf prefix in new-journal.tid * Remove tf prefix in new-tiddler.tid
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
title: $:/core/ui/Buttons/more-page-actions
|
|
tags: $:/tags/PageControls
|
|
caption: {{$:/core/images/down-arrow}} {{$:/language/Buttons/More/Caption}}
|
|
description: {{$:/language/Buttons/More/Hint}}
|
|
|
|
\whitespace trim
|
|
\define config-title() $:/config/PageControlButtons/Visibility/$(listItem)$
|
|
|
|
<$button popup=<<qualify "$:/state/popup/more">>
|
|
tooltip={{$:/language/Buttons/More/Hint}}
|
|
aria-label={{$:/language/Buttons/More/Caption}}
|
|
class=<<tv-config-toolbar-class>>
|
|
selectedClass="tc-selected"
|
|
>
|
|
<%if [<tv-config-toolbar-icons>match[yes]] %>
|
|
{{$:/core/images/down-arrow}}
|
|
<%endif%>
|
|
<%if [<tv-config-toolbar-text>match[yes]] %>
|
|
<span class="tc-btn-text">
|
|
<$text text={{$:/language/Buttons/More/Caption}}/>
|
|
</span>
|
|
<%endif%>
|
|
</$button>
|
|
<$reveal state=<<qualify "$:/state/popup/more">> type="popup" position="below" animate="yes">
|
|
<div class="tc-drop-down">
|
|
<$let tv-config-toolbar-icons="yes" tv-config-toolbar-text="yes" tv-config-toolbar-class="tc-btn-invisible">
|
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/PageControls]!has[draft.of]] -[[$:/core/ui/Buttons/more-page-actions]]"
|
|
variable="listItem"
|
|
>
|
|
<$reveal type="match" state=<<config-title>> text="hide">
|
|
<$set name="tv-config-toolbar-class"
|
|
filter="[<tv-config-toolbar-class>] [<listItem>encodeuricomponent[]addprefix[tc-btn-]]"
|
|
>
|
|
<$transclude tiddler=<<listItem>> mode="inline"/>
|
|
</$set>
|
|
</$reveal>
|
|
</$list>
|
|
</$let>
|
|
</div>
|
|
</$reveal>
|