mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 17:46:19 +00:00
b179a60111
The reveal widget leaves behind an unnecessary span, which breaks the CSS used to target the button.
10 lines
654 B
Plaintext
10 lines
654 B
Plaintext
title: $:/core/ui/TopBar/menu
|
|
tags: $:/tags/TopRightBar
|
|
|
|
<$list filter="[[$:/state/sidebar]get[text]!match[no]]" variable="ignore">
|
|
<$button set="$:/state/sidebar" setTo="no" tooltip={{$:/language/Buttons/HideSideBar/Hint}} aria-label={{$:/language/Buttons/HideSideBar/Caption}} class="tc-btn-invisible">{{$:/core/images/chevron-right}}</$button>
|
|
</$list>
|
|
<$list filter="[[$:/state/sidebar]get[text]match[no]]" variable="ignore">
|
|
<$button set="$:/state/sidebar" setTo="yes" tooltip={{$:/language/Buttons/ShowSideBar/Hint}} aria-label={{$:/language/Buttons/ShowSideBar/Caption}} class="tc-btn-invisible">{{$:/core/images/chevron-left}}</$button>
|
|
</$list>
|