cacaushow.com.br - Login window is not fully visible when accessed
Categories
(Web Compatibility :: Site Reports, defect, P1)
Tracking
(Webcompat Score:4, Webcompat Priority:P1, firefox-esr115 affected, firefox-esr128 affected, firefox135 affected, firefox136 affected, firefox137 affected)
People
(Reporter: ctanase, Assigned: twisniewski)
References
(Depends on 1 open bug, )
Details
(4 keywords, Whiteboard: [webcompat-source:product])
User Story
platform:windows,mac,linux,android impact:workflow-broken configuration:general affects:all branch:release diagnosis-team:layout user-impact-score:800
Attachments
(2 files)
Environment:
Operating system: Windows 10
Firefox version: Firefox 135.0 (release)/137
Preconditions:
- Clean profile
Steps to reproduce:
- Navigate to: https://lovers.cacaushow.com.br/home
- Click on "Entrar" in the header.
- Observe the behavior.
Expected Behavior:
The login window is fully visible.
Actual Behavior:
The login window is barely visible.
Notes:
- Reproducible on the latest Firefox Release and Nightly
- Reproducible regardless of the ETP setting
- Works as expected using Chrome
Created from webcompat-user-report:442863c3-ab26-4221-bb84-acc0df7d0067
Comment 1•25 days ago
|
||
Since nightly and release are affected, beta will likely be affected too.
For more information, please visit BugBot documentation.
![]() |
||
Comment 2•25 days ago
|
||
Remove display: flex;
from the following css is workaround.
.container[_ngcontent-ng-c810987920] {
...
display: flex;
...
}
Updated•20 days ago
|
Assignee | ||
Comment 3•14 days ago
|
||
Thanks, Alice! They are using -webkit-fill-available
and also setting the height of the container to 0 for whatever reason:
.visibility[_ngcontent-ng-c810987920] {
overflow: initial !important;
height: -webkit-fill-available !important;
}
.container[_ngcontent-ng-c810987920] {
height: 0;
}
An intervention with these rules does the trick without breaking the popup's layout:
app-root .visibility, app-root .visibility.container {
height: fit-content;
}
This should work fine in Chrome and Safari as well, so it's unclear why they went with the non-standard approach.
Assignee | ||
Comment 4•14 days ago
|
||
Updated•14 days ago
|
Comment 6•12 days ago
|
||
Backed out for causing failures at browser_interventions.js.
Backout link: https://hg.mozilla.org/integration/autoland/rev/a5f31fde35ddbb02b23fc5aef0f9d4df2bd6214b
Failure log: https://treeherder.mozilla.org/logviewer?job_id=496740708&repo=autoland&lineNumber=11514
Comment 9•11 days ago
|
||
bugherder |
Assignee | ||
Updated•11 days ago
|
Updated•10 days ago
|
Description
•