Last active
July 17, 2025 23:13
-
-
Save drequeary/6afea6d99e5db25044802304fa7c1fa5 to your computer and use it in GitHub Desktop.
Changes new tab background for Firefox.
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
| @-moz-document url("about:newtab"), url("about:home"), url(about:privatebrowsing) { | |
| /* Sets background image and autoscale image to browser window. */ | |
| body{ | |
| background-image: url("") !important; | |
| background-size: cover !important; | |
| background-repeat: no-repeat !important; | |
| background-attachment: fixed !important; | |
| background-position-x: center !important; | |
| background-position-y: bottom !important; | |
| } | |
| /* Changes pinned shortcuts background and text colors | |
| .top-site-outer .tile { | |
| background-color: #2f3542 !important; | |
| } | |
| */ | |
| /* When hovering over a pinned shortcut | |
| .top-site-outer:hover { | |
| background-color: #57606f !important; | |
| } | |
| */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment