2000558-www.jal.co.jp-hide-app-recommendation.css (703B)
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.jal.co.jp - tables are not rendered correctly 7 * Bug #2000558 - https://bugzilla.mozilla.org/show_bug.cgi?id=2000558 8 * WebCompat issue #130020 - https://github.com/webcompat/web-bugs/issues/130020 9 * WebCompat issue #189157 - https://github.com/webcompat/web-bugs/issues/189157 10 * 11 * The site adds min-width:max-content to the tables in quesiton, which other 12 * browsers ignore in different ways. We can just unapply that rule to fix it. 13 */ 14 .fixed_th1st table { 15 min-width: unset; 16 }