This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into navbar_clipping
- Loading branch information
Showing
26 changed files
with
322 additions
and
295 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 0 additions & 19 deletions
19
...in/assets/extensions/webcompat/injections/css/bug1654877-preev.com-moz-appearance-fix.css
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
...ain/assets/extensions/webcompat/injections/css/bug1848716-elal.com-unsupported-banner.css
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
...assets/extensions/webcompat/injections/css/bug1877346-offerup.com-infinite-scroll-fix.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* 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 | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
/** | ||
* offerup.com - Infinite scroll doesn't work | ||
* Bug #1720060 - https://bugzilla.mozilla.org/show_bug.cgi?id=1720060 | ||
* | ||
* The site uses IntersectionObserver to show new items on the page, | ||
* as the page being scrolled and it doesn't work with with | ||
* Dynamic Toolbar enabled. Adding an empty element after the content | ||
* to make up for the height of the dynamic toolbar makes it work. | ||
*/ | ||
|
||
#__next::after { | ||
display: block; | ||
width: 100%; | ||
height: 10px; | ||
content: ""; | ||
} |
25 changes: 25 additions & 0 deletions
25
.../src/main/assets/extensions/webcompat/injections/css/bug1884842-foodora.cz-height-fix.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* 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 | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
/** | ||
* foodora.cz - Unable to pick an address | ||
* Bug #1884842 - https://bugzilla.mozilla.org/show_bug.cgi?id=1884842 | ||
* WebCompat issue #130975 - https://github.com/webcompat/web-bugs/issues/130975 | ||
* | ||
* Unable to confirm an adress on the delivery site due to button being outside | ||
* the viewport and parent container unscrollable. | ||
* Depends on https://bugzilla.mozilla.org/show_bug.cgi?id=1481876 | ||
*/ | ||
|
||
@media (max-width: 527.98px) { | ||
.bds-c-modal--is-mobile-bottom-sheet .bds-c-modal__content-window { | ||
height: 100%; | ||
} | ||
} | ||
|
||
@media (min-height: 528px) { | ||
.map-modal__map.map-box { | ||
height: 362px; | ||
} | ||
} |
Oops, something went wrong.