tor-browser

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

bug1925508-developer-apple.com-transform-scale.css (927B)


      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 * developer.apple.com - content of the page is shifted to the left
      7 * Bug #1925508 - https://bugzilla.mozilla.org/show_bug.cgi?id=1925508
      8 * WebCompat issue #4070 - https://webcompat.com/issues/4070
      9 *
     10 * The site is relying on zoom property which is not supported by Mozilla,
     11 * see https://bugzilla.mozilla.org/show_bug.cgi?id=390936. Resetting
     12 * -moz-transform on the table of contents fixes the issue.
     13 */
     14 @media only screen and (min-device-width: 320px) and (max-device-width: 980px),
     15  (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 320px) and (max-width: 980px) {
     16  #tocContainer {
     17    -moz-transform: initial;
     18  }
     19 }