Unnecessary scroll bar below the support topic on apple.com
Categories
(Web Compatibility :: Site Reports, defect, P3)
Tracking
(Webcompat Priority:P3)
Webcompat Priority | P3 |
People
(Reporter: ctanase, Unassigned)
References
(Depends on 1 open bug, )
Details
(Keywords: webcompat:needs-sitepatch, Whiteboard: [webcompat:sightline])
User Story
platform:windows,mac,linux impact:minor-visual affects:all
Attachments
(2 files)
Environment:
Operating system: Windows 10
Firefox version: Nightly 119.0a1 (2023-08-28)
Steps to reproduce:
- Go to https://support.apple.com/kb/index?page=search&type=organic&src=support_searchbox_psp&locale=en_US&q=test
- Observe the scroll bar below the support topic/post.
Expected Behaviour:
There's no scroll bar below the support topic.
Actual Behaviour:
There's a scroll bar below the support topic.
Notes:
- Screenshot provided
- Reproducible on Firefox Release as well
- Not reproducible on Chrome
- Issue found during WebCompat team [Top100] websites testing
Comment 1•1 years ago
•
|
||
This seems to be the web site design. The following style is applied to the container. So, the scrollbar is hidden on webkit only.
https://support.apple.com/static_resources/css/search_page.css
.tabs .tab_content_text {
word-break: break-word;
overflow-x: scroll;
-ms-overflow-style: none;
}
.tabs .tab_content_text::-webkit-scrollbar {
display: none;
}
Updated•1 year ago
|
Comment 2•1 year ago
|
||
Verified this issue and still reproduces on Firefox 122 and 124, even if the articles received an UI update.
Tested with:
Browser / Version: Firefox Release 122.0.1 (64-bit)/ Firefox Nightly 124.0a1 (2024-02-14) (64-bit)
Operating System: Windows 10 PRO x64
Comment 3•1 year ago
|
||
Comment 4•10 months ago
|
||
(In reply to Alice0775 White from comment #1)
This seems to be the web site design. The following style is applied to the container. So, the scrollbar is hidden on webkit only.
https://support.apple.com/static_resources/css/search_page.css
.tabs .tab_content_text { word-break: break-word; overflow-x: scroll; -ms-overflow-style: none; } .tabs .tab_content_text::-webkit-scrollbar { display: none; }
Linking dependency as such, thanks!
Updated•10 months ago
|
Updated•3 months ago
|
Updated•15 days ago
|
Description
•