www.aliexpress.com - Buttons are not fully visible due to scroll bar
Categories
(Web Compatibility :: Site Reports, defect, P2)
Tracking
(Webcompat Priority:P2, Webcompat Score:3, firefox131 affected, firefox133 affected)
People
(Reporter: ctanase, Assigned: twisniewski)
References
(Depends on 1 open bug, )
Details
(Keywords: webcompat:site-report, webcompat:sitepatch-applied, Whiteboard: [webcompat-source:web-bugs][webcompat:sightline])
User Story
platform:windows,mac,linux impact:significant-visual configuration:general affects:all branch:release diagnosis-team:layout user-impact-score:200
Attachments
(3 files)
Environment:
Operating system: Windows 10
Firefox version: Firefox 131.0/133
Steps to reproduce:
- Go to https://www.aliexpress.com and access the bundle deals or the super deals. (or go directly to https://www.aliexpress.com/gcp/300000512/nnpage2024?spm=a2g0o.home.3fornn.1.650c76dbqSdiLG&disableNav=YES&pha_manifest=ssr&_immersiveMode=true&channelLinkTag=nn_newgcp )
- Observe the buttons below the header.
Expected Behavior:
The buttons are fully visible.
Actual Behavior:
The buttons are not fully visible, scrollbar overlap with them.
Notes:
- Reproduces regardless of the status of ETP
- Reproduces in Firefox Nightly, and Firefox Release
- Does not reproduce in Chrome
Created from https://github.com/webcompat/web-bugs/issues/143067
| Reporter | ||
Comment 1•1 year ago
|
||
| Reporter | ||
Updated•1 year ago
|
Comment 2•1 year ago
•
|
||
So, this is odd. It's not -webkit-scrollbar. Instead,
<div
id="1380005573"
horizontal="true"
showshorizontalscrollindicator="false"
scrolleventthrottle="50"
showsverticalscrollindicator="true"
class="rax-view-v2 rax-scrollview rax-scrollview-horizontal tab_pc_content"
style="box-sizing: border-box; display: flex; flex-direction: row; flex-shrink: 0; align-content: flex-start; border-width: 0vw; border-style: solid; border-color: black; margin: 0vw; padding: 0vw; min-width: 0vw; width: 100%; height: 100%; direction: ltr; overflow: scroll hidden;"
>
and I don't know what showshorizontalscrollindicator="false" is - maybe that's related, maybe not. This needs diagnosis.
Updated•1 year ago
|
Updated•1 year ago
|
Updated•1 year ago
|
Comment 3•1 year ago
|
||
Dennis, I see:
.rax-scrollview::-webkit-scrollbar {
display: none;
}
In the chrome inspector when debugging this. We could suggest them to fix it (or intervene) with:
.rax-scrollview { scrollbar-width: none }
We could also make this work somehow, with some effort, if we come across this ::-webkit-scrollbar { display: none } case commonly enough.
Comment 4•1 year ago
|
||
Comment 5•1 year ago
|
||
Comment 6•1 year ago
|
||
Ah - looks like my quick check during triage was wrong, then. Cool. I'll remove this from the diagnosis queue, but let's ship an intervention. :)
Updated•1 year ago
|
Updated•10 months ago
|
| Assignee | ||
Comment 8•9 months ago
|
||
The layout is a bit different now, and this is the CSS rule causing the issue:
.aec-scrollview::-webkit-scrollbar {
display: none;
}
So we can still ship an appropriate intervention here.
| Assignee | ||
Comment 9•9 months ago
|
||
Updated•9 months ago
|
Updated•9 months ago
|
Comment 10•9 months ago
|
||
Comment 11•9 months 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 12•9 months ago
|
||
Comment 13•9 months ago
|
||
Comment 14•9 months ago
|
||
| bugherder | ||
| Assignee | ||
Updated•9 months ago
|
Updated•9 months ago
|
| Assignee | ||
Updated•8 months ago
|
| Assignee | ||
Updated•8 months ago
|
Updated•8 months ago
|
| Assignee | ||
Comment 15•7 months ago
|
||
We can remove our intervention here, as the layout has changed and while I see them using webkit-scrollbar in one CSS style, they are also using scrollbar-width:none in a similar one, so I think we're safe.
| Assignee | ||
Comment 16•7 months ago
|
||
The intervention was removed in bug 1945830.
Description
•