Yes, currently the only way to follow a deep thread is to continue clicking permalinks to the comments in order to reset the margin width.
They've known about it for a while. But what is the solution?
I
'
v
e
g
o
t
i
t
.
J
u
s
t
v
e
r
t
i
c
a
l
l
y
a
r
r
a
n
g
e
c
o
m
m
e
n
t
s
f
r
o
m
t
h
e
s
t
a
r
t
t
o
s
a
v
e
r
o
o
m
!
The margin to the left of the message-divs is too large. Should be like the margin on the right, which is smaller. It also may be possible to use different CSS classes, depending on how big a thread is.
It should also be possible to open a whole tree, or at least a complete branch of the tree, with one click, or at least until another fork happens. Clicking for every few instances down the tree kinda sucks. With tree I mean the structure under which the messages are organized.
This shouldn't cause too much trouble with the database, if the relevant fields are indexed, and the objects are retrieved in one single operation.
You could probably fix this with a custom sub CSS, which you (or any other user) could then apply globally in your settings. If you give it a try please let me know.
I've made a few changes to the CSS, so that less space is wasted:
https://poal.co/s/WMDTestSite/135282
Put the following into your CSS, if you want to use this design:
/* CSS here */
.pchild {
margin-left: 0px;
}
.c-upvote, .c-downvote, .upvote, .downvote {
width: 12px;
}
.votecomment {
width: 16px;
}
.commentrow.text-post.no-padding.comment {
padding: 0.4em 0 0.4em 0.4em;
}
article.comment:nth-child(n) {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 2px solid #333;
border-right: none;
}
article.comment:first-of-type {
border-radius: 8px;
}
How/where can I customize the CSS?
(post is archived)