tor-browser

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

bug1931538-buzzfeed.com-card-game-fix.css (603B)


      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.buzzfeed.com - thanksgiving-foods-showdown-quiz card game is broken
      7 * Bug #1931538 - https://bugzilla.mozilla.org/show_bug.cgi?id=1931538
      8 *
      9 * The cards have an interop issue where Chrome ignores pointer-events on the
     10 * back-faces of the cards, but other browsers do not. This CSS fixes it.
     11 */
     12 [class*="isFlipped"] [class*="cardFace"][class*="cardBack"] {
     13  pointer-events: none;
     14 }