Nice implementation of sidebars as sliders.
When looked at it with FF3.6 the problem with edit mode appears to be
that the edit tiddler display is pushed below the opened sliders,
which could be prevented with FND's old overflow style, by adding this
piece at the end of your StyleSheet tiddler:
/*{{{*/
/* Overflow style by FND - http://cleanlayout.tiddlyspot.com/ */
#mainMenu{position:static;float:left;width:auto;padding-left:.5em;font-
size:1.1em;line-height:1.6em;text-align:left}
#sidebar{position:static;float:right;/*display:none;*/margin-right:
3px;margin-left:1em;width:16em;font-size:0.9em}
#displayArea{overflow:hidden;margin:.7em .5em 0 0}
#displayArea{display:inline-block}
#displayArea{display:block}
#mainMenu{max-width:18em}
#mainMenu{max-width:480px}
* html #sidemenu{ /* IE6 */width: expression(this.clientWidth > 480 ?
480 : auto);}
#tiddlerDisplay{display:block;width:auto;overflow:hidden}
/*}}}*/
And changing the PageTemplate to:
<!--{{{-->
<div class='header' macro='gradient vert
[[ColorPalette::PrimaryLight]] [[ColorPalette::PrimaryMid]]'>
<div class='headerShadow'>
<span class='siteTitle' refresh='content' tiddler='SiteTitle'></
span>
<span class='siteSubtitle' refresh='content'
tiddler='SiteSubtitle'></span>
</div>
<div class='headerForeground'>
<span class='siteTitle' refresh='content' tiddler='SiteTitle'></
span>
<span class='siteSubtitle' refresh='content'
tiddler='SiteSubtitle'></span>
</div>
</div>
<div class='topMenu'>
<div id='sidebar' macro='slider chkOptionsMenu OptionsMenu "Options
»"'></div>
<div id='mainMenu' macro='slider chkMainMenu MainMenu "Menu »"'></
div>
<!-- <div id='mainMenu' refresh='content' tiddler='MainMenu'></div>
-->
</div>
<div id='displayArea'>
<div id='messageArea'></div>
<div id='tiddlerDisplay'></div>
</div>
<!--}}}-->
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.