tor-browser

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

bug1966389-boots.com-align-element-widths.css (740B)


      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.boots.com/opticiansappointments - form elements are not the same width
      7 * Bug #1966389 - https://bugzilla.mozilla.org/show_bug.cgi?id=1966389
      8 * WebCompat issue #154274 - https://github.com/webcompat/web-bugs/issues/154274
      9 *
     10 * They are using the non-standard -webkit-fill-available, but we can use the
     11 * similar -moz-available to work around the issue.
     12 */
     13 @media only screen and (max-width: 1224px) {
     14  .Address input,
     15  .RebookAddress input,
     16  .Age select,
     17  .AppointmentType select {
     18    width: -moz-available;
     19  }
     20 }