aboutsummaryrefslogtreecommitdiff
path: root/.mozilla
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2019-10-24 22:32:36 -0400
committertdro <tdro@users.noreply.github.com>2019-10-24 22:35:00 -0400
commit6f107bfe5a9dfcad25b9b6e8f24f59b115ea57b1 (patch)
tree989393de788c2de4903fa38a08b3ba945ac99120 /.mozilla
parentdc76353eabd502bb2e7a1825d75fd2fd0965db31 (diff)
downloaddotfiles-6f107bfe5a9dfcad25b9b6e8f24f59b115ea57b1.tar.gz
dotfiles-6f107bfe5a9dfcad25b9b6e8f24f59b115ea57b1.tar.bz2
dotfiles-6f107bfe5a9dfcad25b9b6e8f24f59b115ea57b1.zip
.mozilla/firefox/userChrome.css: Hide suggestion results dropdown menu
Diffstat (limited to '.mozilla')
-rw-r--r--.mozilla/firefox/5xd34j21.default/chrome/userChrome.css7
1 files changed, 6 insertions, 1 deletions
diff --git a/.mozilla/firefox/5xd34j21.default/chrome/userChrome.css b/.mozilla/firefox/5xd34j21.default/chrome/userChrome.css
index db41824..11bd9a3 100644
--- a/.mozilla/firefox/5xd34j21.default/chrome/userChrome.css
+++ b/.mozilla/firefox/5xd34j21.default/chrome/userChrome.css
@@ -1,11 +1,16 @@
/* Hide top tab bar in FF Quantum */
-@-moz-document url("chrome://browser/content/browser.xul") {
+@-moz-document url("chrome://browser/content/browser.xhtml") {
#TabsToolbar {
visibility: collapse !important;
margin-bottom: 21px !important;
}
}
+/* Hide autocomplete results dropdwon */
+.urlbarView {
+ display: none !important;
+}
+
/* Auto hide sidebar */
:root {
--sidebar-hover-width: 8px;