1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +00:00

Push top right menu items to the right

Looking more backwards compatible
This commit is contained in:
Jeremy Ruston 2020-02-28 17:22:47 +00:00
parent 5644c2ac7b
commit edf025ebdc
3 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@ tags: $:/tags/MenuBar
description: Items from $:/tags/TopRightBar description: Items from $:/tags/TopRightBar
caption: Legacy Top Right Bar caption: Legacy Top Right Bar
custom-menu-content: <$transclude tiddler="$:/plugins/tiddlywiki/menubar/items/toprightbar" mode="inline"/> custom-menu-content: <$transclude tiddler="$:/plugins/tiddlywiki/menubar/items/toprightbar" mode="inline"/>
custom-menu-styles: float: right;
<$list filter="[all[shadows+tiddlers]tag[$:/tags/TopRightBar]!has[draft.of]]" variable="listItem" storyview="pop"> <$list filter="[all[shadows+tiddlers]tag[$:/tags/TopRightBar]!has[draft.of]]" variable="listItem" storyview="pop">

View File

@ -50,6 +50,7 @@ tags: $:/tags/PageTemplate
<div class="tc-menubar-wide"> <div class="tc-menubar-wide">
<<menubar-inner wide>> <<menubar-inner wide>>
</div> </div>
<div style="clear:both;"/>
<$list filter="[all[shadows+tiddlers]tag[$:/tags/MenuBar]!has[draft.of]is-dropdown[yes]]"> <$list filter="[all[shadows+tiddlers]tag[$:/tags/MenuBar]!has[draft.of]is-dropdown[yes]]">
<$list filter="[<currentTiddler>addprefix[$:/config/plugins/menubar/MenuItems/Visibility/]get[text]] ~show +[match[show]]" variable="ignore"> <$list filter="[<currentTiddler>addprefix[$:/config/plugins/menubar/MenuItems/Visibility/]get[text]] ~show +[match[show]]" variable="ignore">
<$set name="dropdown-state" value=<<qualify "$:/state/popup/topmenu/dropdown/">>> <$set name="dropdown-state" value=<<qualify "$:/state/popup/topmenu/dropdown/">>>

View File

@ -25,3 +25,4 @@ Menu items are tagged <<tag $:/tags/MenuBar>>. The following fields are used by
Custom menu items should make sure that the clickable link or button is an immediate child, and not wrapped in another element. Custom menu items should make sure that the clickable link or button is an immediate child, and not wrapped in another element.
Note that menu items can be pushed to the right of the menu bar setting the ''custom-menu-styles'' field to `float: right;`.