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
Thank you. For me it shows up as a grey bar with an arrow in it (it then becomes two bars when pressed); that might be based on color scheme. But, yes, toggling various KES mods didn’t affect it the issue, so it’s very likely that it’s a Kbin issue. Surprised no one else has mentioned it, if that’s the case! It seems to just block out the last couple of lines afaik
I wasn’t able to reproduce the issue on a default kbin setup with KES either on off. The “always expand post bodies” feature of KES only applies to bodies, but I could extend it to support comments as well so that they auto-expand. What I didn’t observe was any situations where the expansion bar obscures the text. Do you have a screenshot of that?
Are you running a custom theme?
I know what they mean, because I have the same issue on my work pc (but not at home). I forgot it happens because the personal userstyle I’m using includes CSS to fix this issue entirely.
@speck get yourself Stylus if you don’t have it already and try this CSS which works perfectly for me:
div.more:not(:nth-child(1 of .more)) { display: none; }
Can’t guarantee it works with kbin’s built in custom CSS functionality, as that one seems to filter out some selectors (no logic behind which).
@shazbot
Basically, what happens without that CSS is that
At no point is the comment ever expanded. When OP says it obscures text, that’s just the default state where only x lines of the comment are shown and the bar covers the last line(s). The issue is the comment can’t be expanded, so it keeps obscuring the text even when clicked as nothing actually moves.
Looking at the HTML source, I can see five instances of the bar existing at once on the same comment.
I tested just now to turn off my scripts one by one and KES was the culprit. Disabling it fixed the issue. I’ll try checking which feature is causing it.
@shazbot @speck
For me, the culprit is the collapsible comments mod (or the standalone script if you’re using that one).
edit: The root cause seems to be lines 182 to 190. But the actual troublemaker appears to be on kbin’s side, not KES. When the mod’s main function finishes, the comment still only has only one .more element like when it began.
I’ve disabled all other mods and userscripts, so it’s not one of those. Also just tried to disable KES (and even the monkey) entirely, running the script from the console instead. No change either, it’s still happening.
The code fragment in question copies the comment into a new children container. I’m thinking this probably makes some part of kbin confused, leading to the issues we’re seeing.
It might be best to just include the userstyle I’m using in the CSS added by the mod.
This is the code between lines 182 and 190, removing which prevents the issue:
let children = previousComment.querySelector('.children'); if (!children) { // If not, create one children = document.createElement('div'); children.className = 'children'; previousComment.appendChild(children); } // Insert comment into children container children.prepend(comment);
@Pamasich @speck
I have completed an audit of the mod and observed the following issues:
Does not properly unset classes and restore the page to an intact state when turned off: this was having the side effect of making the threaded lines look incorrect when toggling on/off in place. The mod should not leave dangling containers around after it is toggled off. The mod creates an outer container so that the “expando” lines flow all the way down through the child elements, but when turned off, these child elements need to be moved back out of the container to be adjacent to each other and the container removed. => Fixed locally.
Does not properly unset event listeners attached to nested comments. Same as above, tends to leave dangling listeners and does not unset itself cleanly. => In progress.
Because it physically manipulates the DOM and moves sub-comments into their own container down the tree, triggers an event (likely a bug) on Kbin’s side whereby any time the DOM is updated for that element, Kbin appends a
more
element (text expansion button) if the text overflows a certain length, even if amore
element is already present. You can test this by creating a dummy div above or below a long comment and then moving the long comment before or after that div. Simply moving its position in the DOM will trigger the creation of anothermore
element inside. And because the mod puts each comment into its own container for the purposes of threading nested chains of comments, this will trigger the creation of as manymore
s as there are indendation levels. So for a comment chain 5 replies deep, there will be 5more
s. This is further exacerbated when toggling the mod on and off, since thesemore
s are not getting wiped and will just keep getting stacked up. Since this is also an upstream issue, our only alternative here is to walk through the tree and remove the extraneousmore
elements after nesting occurs. This is similar to your CSS solution, but instead of masking them, physically deletes them, otherwise we will have a constantly growing tree ofmore
s every time nesting happens. I guess this should also be reported upstream as well. Kbin seems to expect no DOM manipulation to occur, which is reasonable, I suppose, but might be better if the callback doesn’t insert themore
element at all if it’s already present. => Easy fix on the Kbin side, in progress.@Pamasich
I have resolved the aforementioned issues with a hotfix on the testing branch; please test when time permits. Executive summary:
more
s are being removed now for comments with overflow text. What I thought would be a quick fix turned into hours, and I thought I was losing my marbles over this one for a long time, since the tree clearly showed numerous duplicatemore
s, but only one per comment was being shown at runtime of the script. At first, I did not seriously think that the mod was completing its runtime cycle prior to the duplicate mores being spawned, but indeed this is what was happening. For now, I have added a 20ms sleep before clearing the extramore
s, and this seems to suffice to let them propagate before the mod can continue with the cleanup phase. This seems satisfactory for now, short of attaching observers to wait for the duplicatemore
s to appear.I believe that covers everything. It should be possible to switch the mod on and off at will now and see no adverse effect.
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.
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.
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.
This works for me now.
Thanks for looking into this. I’ve been meaning to audit this mod, but was a bit busy this week. In light of this report, this seems like as good a time as any.
Unfortunately, the mod is no longer maintained by the original author, so I’ll have to inherit it and refactor it. I feel it is overengineered for what it attempts to do, so it should be streamlined and the aforementioned issues fixed. I am also aware of the issue that the mod fails to unset itself properly when turned off. I am really not satisfied with its current functionality.
Root cause analysis and solutions are described in a subsequent comment
Great breakdown of the issue!
I have screenshots of the phenomena in another comment:
https://kbin.social/m/kbinMeta/t/762229/-/comment/4603033
That code snippet seems to work I’m new to stylus, but I think I did it correctly and it allowed me to expand and read your two longer comments here. Thank you for that!
Great to hear the CSS works on mobile too!
I think you pressed the wrong button when you tried to upvote my comment, I can see a downvote there from you.
Fixed that, sorry
Thank you. I’ll take some screenshots in the next day as I come across them. No custom theme, just the color schemes offered by stock kbin.
See if this link works:
https://cdn.imgchest.com/files/w7w6clmml5y.png
Funny enough, I was able to somehow press enough times or the right way to reveal all the text. But usually at least the last line is cut off
I understand the root cause now, will ping you again once this feature is working as expected.
Your follow-up is amazing, thank you!