diff options
| author | Robert Günzler <r@gnzler.io> | 2021-12-07 13:46:57 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-12-07 13:46:57 +0100 |
| commit | 17975c0fcf3191dde956ef04a0f49bff155c69ec (patch) | |
| tree | dc4e58b33ba80efc9faad27dc8a042b949c4e34e /.mozilla/firefox/wr7p23up.default-nightly/chrome/userContent.css | |
| parent | 2503afbba436ac2f4e88fd34a43d4f291afaf420 (diff) | |
firefox: commit userChrome and userContent
Diffstat (limited to '.mozilla/firefox/wr7p23up.default-nightly/chrome/userContent.css')
| -rw-r--r-- | .mozilla/firefox/wr7p23up.default-nightly/chrome/userContent.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.mozilla/firefox/wr7p23up.default-nightly/chrome/userContent.css b/.mozilla/firefox/wr7p23up.default-nightly/chrome/userContent.css new file mode 100644 index 0000000..ca88a0d --- /dev/null +++ b/.mozilla/firefox/wr7p23up.default-nightly/chrome/userContent.css @@ -0,0 +1,17 @@ +/* + dark background in new tabs without a white flash (with tridactyl newtab) + @see: https://github.com/tridactyl/tridactyl/issues/2510 +*/ +:root { + --tridactyl-bg: #2a2a2e !important; + --tridactyl-fg: #b1b1b3 !important; +} + +/* + set the background color of the new tab page (without tridactyl or with tridactyl without newtab) +*/ +@-moz-document url-prefix(about:home), url-prefix(about:newtab), url-prefix(about:blank) { + body { + background: #1d1b19; + } +} |