Hello Edgaras,
If you are concerned by the display in "view mode" (and not only in "edit
mode"), for instance the vertical display between a paragraph text and the
first following bullet, you can customize the CSS value for top and bottom
margin and padding.
For instance, I use the following value (in a tiddler tagged
with $:/tags/Stylesheet)
/* Simple Paragraph */
.tc-tiddler-body p,
.tc-tiddler-preview-preview p {
margin: 0.8em 0 0 0;
padding: 0;
text-indent: 0;
}
/* Unordered lists */
.tc-tiddler-body ul,
.tc-tiddler-preview-preview ul {
margin: 0;
padding: 0 0 0 3em;
}
.tc-tiddler-body ul ul,
.tc-tiddler-preview-preview ul ul {
padding-left: 1.25em;
}
/* Ordered lists */
.tc-tiddler-body ol,
.tc-tiddler-preview-preview ol {
margin: 0;
padding: 0 0 0 3em;
}
.tc-tiddler-body ol ol,
.tc-tiddler-preview-preview ol ol {
padding-left: 1.25em;
}
/* Lists item */
.tc-tiddler-body li,
.tc-tiddler-preview-preview li {
margin: 0.2em 0 0 0;
padding: 0;
}
Best regards,
Eskha
--
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/9c6af5d5-0fab-4380-8b95-846442dd8da3%40googlegroups.com.