tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug1954144-td.com-scrollbar-fix.css (590B)


      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 * td.com - scrollbars on videos are not styled correctly
      7 * Bug #1954144 - https://bugzilla.mozilla.org/show_bug.cgi?id=1954144
      8 *
      9 * They are using non-standard webkit-scrollbar CSS to style the scrollbar, but we
     10 * provide a standards-based analogue.
     11 */
     12 .overlay-video-modal .cmp-dialog__details {
     13  overflow: auto;
     14  scrollbar-width: thin;
     15  scrollbar-color: #616161 #fff;
     16 }