I'd say that most people here are not very familiar with the css definition
names so it is better if you express your question using names of the TW
parts, if possible.
However, I have myself hidden the editor toolbar to have it appear on
hover. Here's the css for this. (It is not elegantly done, it's just for
me.) Maybe it'll help you, maybe not:
title: whateveryouwant
tags: $:/tags/Stylesheet
type: text/css
text:
.tc-editor-toolbar {
position:sticky;
position: -webkit-sticky;
position: sticky;
top: 0px; /* distance to stick from top, e.g if you use top bar */
left:0;
width:100%;
font-size:0;
line-height:0;
padding:0;
border:6px solid transparent;
margin-top:-11px; /* pull it up */
Xoutline:1px solid blue; /* remove the X to peek where it all resides */
}
.tc-editor-toolbar:hover {
font-size:1em;
border-color:white;
background:white;
}
.tc-editor-toolbar button {
display:none;
padding:0px;
}
.tc-editor-toolbar:hover button {
display:inline-block;
}
<:-)
--
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 [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/d40ca0da-013e-4189-a686-157b0c28236c%40googlegroups.com.