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

Move topbar out of the way of scrollbars

In the process getting rid of some extraneous `<p>` tags.

Fixes #566
This commit is contained in:
Jermolene 2014-04-19 11:32:56 +01:00
parent 821f1f1428
commit 7684891285
3 changed files with 14 additions and 6 deletions

View File

@ -3,6 +3,10 @@ tags: $:/tags/PageTemplate
<span class="tw-topbar tw-topbar-left"> <span class="tw-topbar tw-topbar-left">
<$list filter="[all[shadows+tiddlers]tag[$:/tags/TopLeftBar]!has[draft.of]]" variable="listItem"><$transclude tiddler=<<listItem>>/></$list> <$list filter="[all[shadows+tiddlers]tag[$:/tags/TopLeftBar]!has[draft.of]]" variable="listItem">
<$transclude tiddler=<<listItem>> mode="inline"/>
</$list>
</span> </span>

View File

@ -3,6 +3,10 @@ tags: $:/tags/PageTemplate
<span class="tw-topbar tw-topbar-right"> <span class="tw-topbar tw-topbar-right">
<$list filter="[all[shadows+tiddlers]tag[$:/tags/TopRightBar]!has[draft.of]]" variable="listItem"><$transclude tiddler=<<listItem>>/></$list> <$list filter="[all[shadows+tiddlers]tag[$:/tags/TopRightBar]!has[draft.of]]" variable="listItem">
<$transclude tiddler=<<listItem>> mode="inline"/>
</$list>
</span> </span>

View File

@ -330,13 +330,13 @@ a.tw-tiddlylink-external:hover {
} }
.tw-topbar-left { .tw-topbar-left {
left: 0; left: 29px;
top: 0; top: 5px;
} }
.tw-topbar-right { .tw-topbar-right {
top: 0; top: 5px;
right: 0; right: 29px;
} }
.tw-topbar button { .tw-topbar button {