bug1945438-www.tiktok.com-hide-extra-scrollbars.css (625B)
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 * www.tiktok.com - extra scrollbar on categories 7 * Bug #1945438 - https://bugzilla.mozilla.org/show_bug.cgi?id=1945438 8 * WebCompat issue #146225 - https://github.com/webcompat/web-bugs/issues/146225 9 * 10 * They are using non-standard webkit-scrollbar CSS to hide the scrollbar. We can use 11 * scrollbar-width instead to hide it. 12 */ 13 #category-list-container [class*="DivCategoryList"] { 14 scrollbar-width: none; 15 }