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:
parent
83011ddcff
commit
122a6f043d
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user