mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
24 lines
688 B
CSS
24 lines
688 B
CSS
/* ::::: Hide the link toolbar if it is set to autohide and has no items. ::::: */
|
|
|
|
#linktoolbar[hidden="maybe"][hasitems="false"] {
|
|
display: none;
|
|
}
|
|
|
|
/* ::::: urlbar autocomplete ::::: */
|
|
|
|
#urlbar {
|
|
-moz-binding: url("chrome://navigator/content/urlbarBindings.xml#urlbar");
|
|
}
|
|
|
|
.autocomplete-result-popup[for="urlbar"] {
|
|
-moz-binding: url("chrome://navigator/content/urlbarBindings.xml#autocomplete-result-popup") !important;
|
|
}
|
|
|
|
.autocomplete-search-box {
|
|
-moz-binding: url("chrome://navigator/content/urlbarBindings.xml#autocomplete-search-box");
|
|
}
|
|
|
|
.autocomplete-search-engine {
|
|
-moz-binding: url("chrome://navigator/content/urlbarBindings.xml#autocomplete-search-engine");
|
|
}
|