mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
feat(post): clicking "+" button next to "omitted replies" message shows all replies
This commit is contained in:
@@ -179,14 +179,13 @@
|
||||
color: var(--post-mobile-abbr-text-color);
|
||||
}
|
||||
|
||||
.postDesktop .summary .expandButtonWrapper {
|
||||
.postDesktop .summary .omittedRepliesButtonWrapper {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: 2px;
|
||||
}
|
||||
|
||||
.postDesktop .summary .expandButton {
|
||||
background-image: var(--post-replies-expand-button-background-image);
|
||||
.postDesktop .summary .omittedRepliesButtonWrapper {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
width: 18px;
|
||||
@@ -196,6 +195,14 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.postDesktop .summary .hideOmittedReplies {
|
||||
background-image: var(--post-hide-button-background-image);
|
||||
}
|
||||
|
||||
.postDesktop .summary .showOmittedReplies {
|
||||
background-image: var(--post-unhide-button-background-image);
|
||||
}
|
||||
|
||||
.postDesktop .summary a {
|
||||
color: var(--post-link-text-color);
|
||||
text-decoration: var(--post-content-link-text-decoration);
|
||||
|
||||
@@ -17,6 +17,7 @@ export interface PostProps {
|
||||
index?: number;
|
||||
isHidden?: boolean;
|
||||
post?: any;
|
||||
postReplyCount?: number;
|
||||
reply?: any;
|
||||
roles?: Role[];
|
||||
showAllReplies?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user