mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-12 11:14:21 +02:00
24 lines
670 B
CSS
24 lines
670 B
CSS
|
/* To be symlinked in Firefox profile as chrome/userContent.css */
|
||
|
|
||
|
@-moz-document domain(twitter.com) {
|
||
|
html {
|
||
|
scroll-snap-type: y mandatory !important;
|
||
|
}
|
||
|
|
||
|
/* Tweets in the timeline are <article> elements */
|
||
|
article {
|
||
|
scroll-snap-align: start !important;
|
||
|
}
|
||
|
|
||
|
/* Un-stick the sticky header and make it “snappable” as well */
|
||
|
[aria-label="Home timeline"] > :first-child {
|
||
|
position: static !important;
|
||
|
scroll-snap-align: start !important;
|
||
|
}
|
||
|
|
||
|
/* Hide the “new Tweets available” floating toast notification */
|
||
|
[aria-label="New Tweets are available."] {
|
||
|
display: none !important;
|
||
|
}
|
||
|
}
|