You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
firefox-csshacks/chrome/scrollable_urlbar_popup.css

13 lines
757 B
CSS

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/scrollable_urlbar_popup.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* Makes the urlbar dropdown scrollable */
/* Modify the pref browser.urlbar.maxRichResults to set how many results should be shown */
/* This must NOT be loaded in xul namespace */
/* Either load this file using @import or otherwise make sure that the namespace is correctly set */
@namespace html url("http://www.w3.org/1999/xhtml");
html|div#urlbarView-results,
html|div#urlbar-results{ max-height: 400px; overflow-y: auto; scrollbar-color: var(--urlbar-separator-color,currentColor) transparent; scrollbar-width: thin }