Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
/**
* www.buzzfeed.com - thanksgiving-foods-showdown-quiz card game is broken
*
* The cards have an interop issue where Chrome ignores pointer-events on the
* back-faces of the cards, but other browsers do not. This CSS fixes it.
*/
[class*="isFlipped"] [class*="cardFace"][class*="cardBack"] {
pointer-events: none;
}