tor-browser

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

bug1918604-g1.globo.com-fix-clipped-buttons.css (755B)


      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 * g1.globo.com/jogos/caca-palavras - fix CSS layout issues
      7 * Bug #1738564 - https://bugzilla.mozilla.org/show_bug.cgi?id=1738564
      8 * WebCompat issue #141570 - https://webcompat.com/issues/141570
      9 *
     10 * This CSS disables some un-needed CSS masks which cause buttons on the
     11 * top of the game's screen to be clipped, and also un-sets the dominant-
     12 * baseline of the letters SVG so the selection doesn't appear misaligned.
     13 */
     14 
     15 g#insert_chart > g,
     16 g#more_vert > g {
     17  mask: none;
     18 }
     19 
     20 svg [dominant-baseline="middle"] {
     21  dominant-baseline: auto;
     22 }