Tiddlers sorted by date:
<html><div macro="timeline" style="overflow:auto;
max-height:30em;"></div></html>
The list of tiddlers display well when TabTimeline is viewed as a
tiddler, but doesn't display anymore in the sidebar tabs. Any
suggestions?
Florian
#sidebarTabs .tabContents { height:30em; overflow:auto; width:92.5%;
}';
#sidebarTabs .tabContents .tabContents { height:26em !important; }';
The second line is for the tabs contained in the "more" tabContents, so
that it leaves enough space for the missing/orphans/shadowed tabs as
well as some padding.
The difference of 4em between the outer and inner tab heights was
determined empirically, and you might want to adjust it depending upon
whatever other custom CSS you are using (such as different
fonts/padding/margins, etc.)
HTH,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
#sidebarTabs .tabContents { max-height: 50em; overflow: auto; width:
92.5%; }
#sidebarTabs .tabContents .tabContents { max-height: 45em !important; }
I like max-height better than a fixed height. (I only use Firefox, so I
don't care about the fact that IE6 doesn't support max-height... )
-- F.