userChrome/urlbar: hide amazon icon (MR 19)

This commit is contained in:
Oliver Smith 2021-12-05 05:17:10 +01:00
parent 95710f0b98
commit 511f62ac7b
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -78,3 +78,11 @@
display: none;
}
}
/* Even though amazon is removed as search engine in policies.json, it gets
* installed when FF starts for the first time. Hide the button in "This time,
* search with" inside the urlbar. Match localizations like Amazon.de with this
* regex. */
button[id^='urlbar-engine-one-off-item-Amazon'] {
display: none !important;
}