Improved Collapsible Comments - Script that lets you collapse replies by clicking a line to the side of each comment
[https://greasyfork.org/en/scripts/468923-kbin-better-collapsible-comments](Download it from greasyfork)... #kbinMeta
Improved Collapsible Comments - Script that lets you collapse replies by clicking a line to the side of each comment
[https://greasyfork.org/en/scripts/468923-kbin-better-collapsible-comments](Download it from greasyfork)... #kbinMeta
You have the URL components backwards! Text in [ ] first, followed by link in ( ).
Trying this out now!
Hmm, instant chaos in Firefox 115.0b6 unfortunately! I disabled all other kbin userscripts, same issue.
Yep, that solved it! And I agree this method is better :-)
But... sorry to be the bearer of bad news (I know the feeling of getting bug reports just as you thought something worked fine), but it bugs out when you write new comments.
To me, it kinda feels like we need a broad design overhaul across the board.. i know the project is still young, but the design looks a little.. boilerplate-y (understandable for a young project) compared to something like lemmy (i.e. https://lemmy.world/c/apple) As a dev, I would love to have an active discussion thread with designers and other devs or have a consolidated area where we can chat everything about designs Here are some magazines that may be of use: - kbin styles: https://kbin.social/m/kbinStyles - kbin design: https://kbin.social/m/kbinDesign kbin styles seems super helpful since it's literally people modifying the css of the kbin to improve it, so it'd just be making design decisions here and impleementing some of the ideas there
Just a quick and dirty userscript to add some features I feel are super important. I'll probably look into creating some real PRs, but I figure the devs are probably in "put out fires" mode right now....
Currently using on mobile, the larger touch area for collapsing/uncollapsing works great in practice. I also saw your scaling, and for the most part it's well done!
Although I can still force it to cut off some text if I find a discussion that goes deep enough. Not a huge issue though.
I appreciate the work you're putting in! The latest version no longer gets text cut off on the right side. However now the longer comments no longer get that expand option.
This is SO much better than the default thread view, I love it. Thank you!
One tiny nitpick though, is there any way I can add back in the small padding between user comments to keep each comment chain separate? Right now it looks like one big comment chain.
Thanks, I'm glad to hear you like it!
Good call about the padding, I'll add that back in the next update. For now, you can edit the script, and add this to line 150, after styles.innerHTML =
.comments div {
border-left: none !important;
}
.entry-comment .children {
gap: 8px;
}
.comment-level--1 {
margin-bottom: 8px;
}