1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-24 02:27:19 +00:00

Temporarily remove position sticky from titles

Firefox bugs with position:sticky mean that we probably shouldn’t have
sticky titles turned on by default.

Previously, sticky titles were packaged into a pluggable theme. Now, I
think it may make more sense to make the sticky titles status be a
theme tweak for the Vanilla theme.
This commit is contained in:
Jermolene 2015-02-23 11:20:41 +01:00
parent 83011ddcff
commit 122a6f043d

View File

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