mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
fc315d1df7
Fixes #1599 (albeit brutally!)
17 lines
364 B
Plaintext
17 lines
364 B
Plaintext
title: $:/themes/tiddlywiki/vanilla/sticky
|
|
|
|
<$reveal state="$:/themes/tiddlywiki/vanilla/options/stickytitles" type="match" text="yes">
|
|
``
|
|
.tc-tiddler-title {
|
|
position: -webkit-sticky;
|
|
position: -moz-sticky;
|
|
position: -o-sticky;
|
|
position: -ms-sticky;
|
|
position: sticky;
|
|
top: 0px;
|
|
background: ``<<colour tiddler-background>>``;
|
|
z-index: 500;
|
|
}
|
|
``
|
|
</$reveal>
|