bug1936429-diadora.com-fix-doubled-scrollbars.css (680B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 /** 6 * diadora.com - doubled scrollbars on the site's page selector. 7 * 8 * Bug #1936429 - https://bugzilla.mozilla.org/show_bug.cgi?id=1936429 9 * 10 * The site uses -webkit-scrollbar to hide extra scrollbars, rather than the 11 * standard CSS to do that. We can do it for them to improve UX on the site. 12 */ 13 .select2-results { 14 scrollbar-width: none; 15 } 16 .select2-container--default .select2-results > .select2-results__options { 17 scrollbar-width: thin; 18 overflow-x: hidden; 19 }