Open
Bug 1945438
Opened 1 year ago
Updated 3 days ago
www.tiktok.com - Unneccessary scroll bar overlapping categories
Categories
(Web Compatibility :: Site Reports, defect, P3)
Tracking
(Webcompat Priority:P3, Webcompat Score:1, firefox134 affected, firefox136 affected)
ASSIGNED
People
(Reporter: ctanase, Assigned: twisniewski)
References
(Depends on 3 open bugs, )
Details
(Keywords: leave-open, webcompat:site-report, webcompat:sitepatch-applied, Whiteboard: [webcompat-source:web-bugs][webcompat:sightline][webcompat:japan][webcompat:core])
User Story
platform:windows impact:significant-visual configuration:general affects:all branch:release diagnosis-team:layout user-impact-score:0
Attachments
(3 files)
Environment:
Operating system: Windows 10
Firefox version: Firefox 134/136
Steps to reproduce:
- Go to https://www.tiktok.com/explore
- Observe the categories section.
Expected Behavior:
No scroll bar is present below the categories bar.
Actual Behavior:
Scroll bar overlapping the categories.
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/146225
| Reporter | ||
Comment 1•1 year ago
|
||
| Reporter | ||
Updated•1 year ago
|
status-firefox134:
--- → affected
status-firefox136:
--- → affected
Version: unspecified → Firefox 136
Updated•1 year ago
|
Severity: -- → S4
User Story: (updated)
Webcompat Priority: --- → P3
Webcompat Score: --- → 4
Keywords: webcompat:needs-diagnosis
Priority: -- → P3
Comment 2•1 year ago
|
||
The site uses non-standard CSS pseudo-element ::-webkit-scrollbar to hide scrollbars.
.css-6503w-DivCategoryList::-webkit-scrollbar {
display: none;
width: 0px !important;
height: 0px !important;
}
Updated•1 year ago
|
Whiteboard: [webcompat-source:web-bugs] → [webcompat-source:web-bugs][webcompat:sightline]
Updated•1 year ago
|
Webcompat Score: 4 → 6
Updated•1 year ago
|
Webcompat Score: 6 → 4
Keywords: webcompat:needs-diagnosis → webcompat:needs-sitepatch
Updated•1 year ago
|
Webcompat Score: 4 → 6
| Assignee | ||
Comment 3•10 months ago
|
||
This hides the scrollbar on Chrome:
.css-t1qd2d-DivCategoryList::-webkit-scrollbar {
display: none;
width: 0px !important;
height: 0px !important;
}
They seem to have missed having an equivalent scrollbar-width here (though they're using it elsewhere). We can just add this intervention:
.css-t1qd2d-DivCategoryList {
scrollbar-width: none;
}
| Assignee | ||
Updated•10 months ago
|
Keywords: leave-open
| Assignee | ||
Comment 4•10 months ago
|
||
Updated•10 months ago
|
Assignee: nobody → twisniewski
Status: NEW → ASSIGNED
Pushed by twisniewski@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/6c36c49de04b
add a CSS intervention for tiktok.com to hide extra scrollbars; r=denschub,webcompat-reviewers
Comment 6•10 months ago
|
||
| bugherder | ||
| Assignee | ||
Updated•10 months ago
|
Keywords: webcompat:needs-sitepatch → webcompat:sitepatch-applied
Updated•10 months ago
|
Webcompat Score: 6 → 1
| Assignee | ||
Comment 7•10 months ago
|
||
Hmm. Their CSS classes have already changed, breaking the intervention. I'll update it to be a bit more robust, since the problem still persists.
| Assignee | ||
Comment 8•10 months ago
|
||
Updated•10 months ago
|
Attachment #9491856 -
Attachment description: Bug 1945438 - update out CSS webcompat intervention for TikTok to hide a superfluous scrollbar; r?denschub → Bug 1945438 - update our CSS webcompat intervention for TikTok to hide a superfluous scrollbar; r?denschub
Pushed by twisniewski@mozilla.com:
https://github.com/mozilla-firefox/firefox/commit/d4615b6160bb
https://hg.mozilla.org/integration/autoland/rev/db052e997218
update our CSS webcompat intervention for TikTok to hide a superfluous scrollbar; r=denschub,webcompat-reviewers
Comment 10•10 months ago
|
||
| bugherder | ||
Updated•6 months ago
|
Whiteboard: [webcompat-source:web-bugs][webcompat:sightline] → [webcompat-source:web-bugs][webcompat:sightline][webcompat:japan]
Updated•6 months ago
|
User Story: (updated)
Updated•1 month ago
|
Whiteboard: [webcompat-source:web-bugs][webcompat:sightline][webcompat:japan] → [webcompat-source:web-bugs][webcompat:sightline][webcompat:japan][webcompat:core]
You need to log in
before you can comment on or make changes to this bug.
Description
•