umm... this is for individual hovers using inline, like this

 {{collapseE{
 * n1
 ** n1-1 blah blah
 *** n1-1-1 blah blah
 * n2
 ** n2-1 blah blah
 *** n2-1-1 [[LoremIpsum]]
 *** n2-1-2 blah blah
 ** n2-2
 *** n2-2-1 blah blah
 *** n2-2-2 blah blah
 }}}

and the css. note: modern css for modern browsers, so please upgrade
to the latest

/* ''Collapsing/Expanding Nested Lists'' */
.collapseE ul:hover > ul:before { display: none; }

.collapseE ul li:hover {
color: grey; background-color:#eee; font-weight:bold;
cursor:pointer; }
.collapseE ul li:before { content: "more..."; }

.collapseE ul ul li:before { content: ""; }
.collapseE ul li li { display: none; }

.collapseE ul li:hover ul li { display: list-item; }

not sure if its useful for me... but its doable.

regards
michael


On Aug 31, 12:35 am, wolfgang <[email protected]> wrote:
> > I discovered it recently and it doesn't do anything for me.
>
> This will work:
>
> *1
> **1-1
> ***1-1-1
> *2
> **2-1
> ***2-1-1
> ***2-1-2
> **2-2
> ***2-2-1
> ***2-2-2
>
> while this wont:
>
> #1
> ##1-1
> ###1-1-1
> #2
> ##2-1
> ###2-1-1
> ###2-1-2
> ##2-2
> ###2-2-1
> ###2-2-2
>
> [[StyleSheet]]
>
> /* ''Collapsing/Expanding Nested Lists'' */
> /*{{{*/
> #tiddlerDisplay > * > * > ul li:hover { color: red; }
> #tiddlerDisplay > * > * > ul ul li {
>     display: none;}
>
> #tiddlerDisplay > * > * > ul:hover ul li {
>     display: list-item;}
>
> #tiddlerDisplay > * > * > ul > ul:before {
>     content: "more...";
>     margin-left: -2em;
>     border: 1px solid #bbbbbb;
>     padding: 0.1em 0.2em 0.1em 0.2em;
>     font-size: 0.9em;
>     color: #999999;
>     background-color: #eeeeee;}
>
> #tiddlerDisplay > * > * > ul:hover > ul:before {
>     display: none;}
>
> /*}}}*/
>
> Regards..
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to