mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-02 08:46:56 +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:
parent
05c3de3245
commit
d7c0bda15d
@ -8,14 +8,16 @@ tags: [[$:/tags/Stylesheet]]
|
||||
}
|
||||
|
||||
.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;
|
||||
/********************************
|
||||
position: -webkit-sticky;
|
||||
position: -moz-sticky;
|
||||
position: -o-sticky;
|
||||
position: -ms-sticky;
|
||||
position: sticky;
|
||||
********************************/
|
||||
top: 0px;
|
||||
background: <<colour tiddler-background>>;
|
||||
z-index: 500;
|
||||
}
|
||||
|
||||
.tc-tiddler-info {
|
||||
|
Loading…
x
Reference in New Issue
Block a user