1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-25 23:03:15 +00:00

Don't use sticky titles by default

Layout bugs with position: sticky in Firefox mean that we probably
shouldn’t have sticky titles as the default. Rather than reverting to
putting them in a separate theme, it is proposed to expose the sticky
titles setting in Vanilla theme tweaks.
This commit is contained in:
Jermolene 2015-02-23 11:25:10 +01:00
parent 05c3de3245
commit d7c0bda15d

View File

@ -8,14 +8,16 @@ tags: [[$:/tags/Stylesheet]]
} }
.tc-tiddler-title { .tc-tiddler-title {
position: -webkit-sticky; /********************************
position: -moz-sticky; position: -webkit-sticky;
position: -o-sticky; position: -moz-sticky;
position: -ms-sticky; position: -o-sticky;
position: sticky; position: -ms-sticky;
top: 0px; position: sticky;
background: <<colour tiddler-background>>; ********************************/
z-index: 500; top: 0px;
background: <<colour tiddler-background>>;
z-index: 500;
} }
.tc-tiddler-info { .tc-tiddler-info {