From 14993a7f3ca41eb06a2933994bf720f4858b3ff9 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Tue, 17 Dec 2019 10:51:51 +0200 Subject: [PATCH] Override for about:privatebrowsing which doesn't receive colors from theme --- content/newtab_background_color.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/newtab_background_color.css b/content/newtab_background_color.css index 4833ef6..7ebb2f1 100644 --- a/content/newtab_background_color.css +++ b/content/newtab_background_color.css @@ -1,5 +1,9 @@ @namespace url("http://www.w3.org/1999/xhtml"); @-moz-document url("about:home"),url("about:blank"),url("about:newtab"),url("about:privatebrowsing"){ - body{background-color: rgb(46,54,69) !important} + body{background-color: rgb(46,54,69) !important;} +} +@-moz-document("about:privatebrowsing"){ + .search-handoff-button{ background-color: rgba(100,100,100,0.1) !important; } + .fake-textbox{ color: rgb(200,200,200) !important } } \ No newline at end of file