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;
}

  • Pamasich@kbin.social
    link
    fedilink
    arrow-up
    1
    ·
    5 months ago

    Teardown isn’t working for me, tried multiple devices and turned my custom styling off.

    After teardown this is how the site looks like to me. Also, it seems you need to remove the mores on teardown too. The more issue is now fixed when the mod is active, but appears again after teardown.

    • shazbot@kbin.social
      link
      fedilink
      arrow-up
      1
      ·
      5 months ago

      You’re right, looks like I missed something that was obscured by custom styling.

      And good catch on the mores appearing on teardown. This mod is turning out to be quite a beast. Thanks for testing.

    • shazbot@kbin.social
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      5 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.