-
-
Notifications
You must be signed in to change notification settings - Fork 388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
show threads #350
show threads #350
Conversation
Wow, thank you so much! At first glimpse I see problem: Comments on level 5 and below should not be indented (think of mobile), yet somehow show that they are replies 🤔 |
I think the line should be aligned to the left side of the first symbol. I know Reddit does it in the middle of the first one, but they have arrows here.
I think the current indication on a deep level is fine but will be nice to fix it to actually jump to the parent comment |
fixed alignment |
@sw-double & @Reeywhaar - what is the status of PR? is it still WIP or good to be merged? |
not sure that it handles dark theme in an idiomatic way otherwise LGTM on my end |
@sw-double cool, thx! @Reeywhaar - need your blessing |
I'm working on ui and stream api, plan to end in next 3 hours, then I'll watch this PR. |
sure, take your time. thx |
} | ||
.thread > .thread { | ||
padding-left: 17px; | ||
border-left: 1px solid rgba(0, 0, 0, 0.15); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.thread_level_4 .thread > .thread { | ||
padding-left: 5px; | ||
} | ||
.comment_theme_dark ~ .thread { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather move this selector to comment_theme_dark.scss
and make it like
.comment_theme_dark {
...
& ~ .thread {...}
}
In general I see no crimes here, concise work, @sw-double, thank you, once again! So, @umputun, if you like it then great, I can fix some minor issues myself. |
Generally, I like it, thx @sw-double . Two issues to address:
|
Is there a reason why 5+ level indentations are any different? Or why we even have any for such deep levels? |
Not sure I follow. 5+ are indented less mainly for mobile and for big discussions. In old version, as you may remember, levels 5+ were unindented at all. Dunno what helps there actually, I think comments this deep are mess no matter what. What do you suggest? |
My suggestion is to revert 5+ to unindented |
ok, agree |
radio-t/radio-t-site#94
@Reeywhaar