mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
e1b3308a9d
* tc-subtitle is not a sibling to tc-body, So tc-subtitle needs a clearfix to contains float:right * add clearfix to all tiddler elements that could contain floats * add clearfix to tc-tiddler-title in ViewTemplate * add clearfix to plugin/blog/templates * add clearfix to plugin/tour/templates * remove test tiddler * rename draft title class to tc-tiddler-title-draft * undo title field covering * move tc-clearfix to tc-float-right in the base CSS file * rename clearfix CSS class to tc-clearfix * update documentation tiddlers
22 lines
693 B
Plaintext
22 lines
693 B
Plaintext
title: $:/plugins/tiddlywiki/tour/simplified-tiddler
|
|
|
|
\whitespace trim
|
|
<$let storyTiddler=<<currentTiddler>>>
|
|
<div class="tc-tiddler-frame tc-tiddler-view-frame tc-tiddler-exists tc-tiddler-shadow " role="article">
|
|
<div class="tc-tiddler-title tc-clearfix">
|
|
<div class="tc-titlebar">
|
|
<span class="tc-tiddler-controls">
|
|
<$list filter="[<tour-simplified-tiddler-close-button>match[yes]]" variable="ignore">
|
|
{{||$:/core/ui/Buttons/close}}
|
|
</$list>
|
|
</span>
|
|
<span>
|
|
<h2 class="tc-title"><$view field="caption"/></h2>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="tc-tiddler-body tc-clearfix">
|
|
<$transclude field="text" mode="block"/>
|
|
</div>
|
|
</div>
|
|
</$let> |