Ah great :-)
I'll try it- but where ;-)

Should I write it in $:/plugins/tobibeer/preview/styles

or in another tiddler of that plugin or in a new tiddler tagged with "
$:/tags/Stylesheet"?



> You can use this basic idea for a pure css "show when hovering" popup.
>
> <div class="hover-to-show">
>    [[visible link]]
>    <span class="hover-to-show-inner">
>       content in popup
>    </span>
> </div>
>
> <style>
> .hover-to-show-inner {
>   display:none;
> }
>
>  .hover-to-show:hover .hover-to-show-inner {
>   position:absolute;
>   display:block;
>   width:150%;
>   margin-left:-155%; margin-top:-1.5em;
>   background:white;
>   border:1px solid silver;
>   border-radius:4px;
>   /* ...etc... */
>  }
> </style>
>
> <:-)
>
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2b263f61-6a5c-4a6a-a468-551c9c222238%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to