mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 02:49:56 +00:00
8efd0ace34
* add whitespace trim to advanced search button * add whitespace trim to new tiddler * add whitespace trim to new journal * add whitespace trim to new image * add whitespace trim to control panel button * add whitespace trim to tiddler manager button * add whitespace trim to language button * add whitespace trim to palette button * add whitespace trim to theme button * add whitespace trim to storyview button * add whitespace trim to timestamp button * add whitespace trim to encryption button * add whitespace trim to tag-manager button
27 lines
1.3 KiB
Plaintext
27 lines
1.3 KiB
Plaintext
title: $:/core/ui/Buttons/encryption
|
|
tags: $:/tags/PageControls
|
|
caption: {{$:/core/images/locked-padlock}} {{$:/language/Buttons/Encryption/Caption}}
|
|
description: {{$:/language/Buttons/Encryption/Hint}}
|
|
|
|
\whitespace trim
|
|
<$reveal type="match" state="$:/isEncrypted" text="yes">
|
|
<$button message="tm-clear-password" tooltip={{$:/language/Buttons/Encryption/ClearPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/ClearPassword/Caption}} class=<<tv-config-toolbar-class>>>
|
|
<$list filter="[<tv-config-toolbar-icons>match[yes]]">
|
|
{{$:/core/images/locked-padlock}}
|
|
</$list>
|
|
<$list filter="[<tv-config-toolbar-text>match[yes]]">
|
|
<span class="tc-btn-text"><$text text={{$:/language/Buttons/Encryption/ClearPassword/Caption}}/></span>
|
|
</$list>
|
|
</$button>
|
|
</$reveal>
|
|
<$reveal type="nomatch" state="$:/isEncrypted" text="yes">
|
|
<$button message="tm-set-password" tooltip={{$:/language/Buttons/Encryption/SetPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/SetPassword/Caption}} class=<<tv-config-toolbar-class>>>
|
|
<$list filter="[<tv-config-toolbar-icons>match[yes]]">
|
|
{{$:/core/images/unlocked-padlock}}
|
|
</$list>
|
|
<$list filter="[<tv-config-toolbar-text>match[yes]]">
|
|
<span class="tc-btn-text"><$text text={{$:/language/Buttons/Encryption/SetPassword/Caption}}/></span>
|
|
</$list>
|
|
</$button>
|
|
</$reveal>
|