Skip to content
Snippets Groups Projects

userChrome/urlbar: Hide tracking container

All threads resolved!
Files
2
+ 12
3
@@ -41,10 +41,19 @@
}
/* urlbar: Hide translate and picture-in-picture icon */
#urlbar #translations-button, #urlbar #picture-in-picture-button, #urlbar #identity-box #identity-permission-box {
#urlbar #translations-button,
#urlbar #picture-in-picture-button,
#urlbar #identity-box #identity-permission-box {
display: none !important;
}
/* hide protections container by default */
@media not (-moz-bool-pref: "mcf.showprotectionsicon") {
#tracking-protection-icon-container {
display: none !important;
}
}
/* Focused urlbar: hide all icons around it, so we have more space to edit the URL */
#urlbar[focused] #remote-control-box,
#urlbar[focused] #identity-box,
@@ -73,7 +82,7 @@
margin: 0px !important;
margin-inline: 0px !important;
border-inline: 0px !important;
overflow-y: auto !important;
overflow-y: auto !important;
overflow-x: none !important;
scrollbar-width: none;
}
@@ -106,6 +115,6 @@
* 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'] {
button[id^="urlbar-engine-one-off-item-Amazon"] {
display: none !important;
}
Loading