Created
August 27, 2024 20:59
-
-
Save DeeNewcum/6f281c57a3bca1459042f0767e920ddf to your computer and use it in GitHub Desktop.
Firefox user CSS sync
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Since it's difficult or impossible to synchronize user CSS, I'm using this to manually | |
* update changes across all my browsers. | |
* | |
*/ | |
@-moz-document domain(www.amazon.com) { | |
/* delete the Rufus auto-popup */ | |
div#nav-flyout-rufus { | |
display: none !important; | |
} | |
/* delete the strip that's pure advertisement */ | |
div#percolate-ui-ilm_div { | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment