/* 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 */ #urlbar-results{ max-height: 400px; /* Maximum height for the list, modify as needed */ overflow-y: auto; scrollbar-color: var(--urlbar-separator-color,currentColor) transparent; scrollbar-width: thin } .urlbarView-no-wrap{ position: relative; }