disable glitchy ::after gradient (scrollhint) on FF mobile

This commit is contained in:
Til Schmitter 2026-04-26 10:45:07 +02:00
parent 008b975d7f
commit bca751a8ea
2 changed files with 7 additions and 2 deletions

View file

@ -3672,8 +3672,8 @@ html:not(.e) #wrap.thin {
width: calc(50vw - 5em);
}
}
html:not(.e) #treeh:after,
html:not(.e) #wrap.thin #ghead::after {
html:not(.e) #treeh:not(.noa):after,
html:not(.e) #wrap.thin #ghead:not(.noa)::after {
content: "";
position: sticky;
right: -.5em;

View file

@ -10197,6 +10197,11 @@ ebi('treeh').addEventListener('wheel', function (e) {
scroll_v_to_h(e, this);
});
if(FIREFOX && MOBILE){
// disable glitchy ::after gradient (scrollhint) (2026-04-26)
clmod(ebi('ghead'), 'noa', true);
clmod(ebi('treeh'), 'noa', true);
}
var scroll_y = -1;
var scroll_vp = '\n';