They always obscure part of the text, no matter what. I juat want the full text.

nb that I use KES so maybe that’s where the issue is?

Edit: should probably mention that this is on mobile, android

Edit 2: the code snippet below, provided by @pamasich, seems to have fixed the issue. I added it to my mobile browser (Firefox nightly) via the Stylus add-on:

div.more:not(:nth-child(1 of .more)) {
    display: none;
}

Edit 3: Latest KES update seems to have fixed the issue. More deets here: https://kbin.social/m/enhancement/t/777616 Thanks @shazbot

  • shazbot@kbin.social
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    6 months ago

    I had just forgotten something simple (unload the threaded comments CSS):

    Before:

    removeDangling();
    safeGM("removeStyle", "hide-defaults");
    
    

    After:

    removeDangling();
    clearMores();
    safeGM("removeStyle", "hide-defaults");
    safeGM("removeStyle", "threaded-comments");
    
    

    This is live on testing, but might take a sec to propagate due to GitHub’s caching feature.