mirror of
https://github.com/9001/copyparty.git
synced 2026-06-20 13:12:26 -06:00
disable glitchy ::after gradient (scrollhint) on FF mobile
This commit is contained in:
parent
008b975d7f
commit
bca751a8ea
|
|
@ -3672,8 +3672,8 @@ html:not(.e) #wrap.thin {
|
||||||
width: calc(50vw - 5em);
|
width: calc(50vw - 5em);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
html:not(.e) #treeh:after,
|
html:not(.e) #treeh:not(.noa):after,
|
||||||
html:not(.e) #wrap.thin #ghead::after {
|
html:not(.e) #wrap.thin #ghead:not(.noa)::after {
|
||||||
content: "";
|
content: "";
|
||||||
position: sticky;
|
position: sticky;
|
||||||
right: -.5em;
|
right: -.5em;
|
||||||
|
|
|
||||||
|
|
@ -10197,6 +10197,11 @@ ebi('treeh').addEventListener('wheel', function (e) {
|
||||||
scroll_v_to_h(e, this);
|
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_y = -1;
|
||||||
var scroll_vp = '\n';
|
var scroll_vp = '\n';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue