vincentbernat.i3wm-configur.../dotfiles/firefox.css

24 lines
670 B
CSS
Raw Normal View History

2022-08-13 09:32:50 +02:00
/* 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;
}
}