@@ -397,7 +397,90 @@ const Thread = ({ setBodyStyle }) => {
)
})
})}
-
+
+
+
+
+
+
+
...
+
+ LongName (...)
+
+
+ (User:
+ CCxfJWFT...
+ )
+
+
+
+ {/* {thread.title ? `${thread.title}` : null} */}
+ Sometimes titles can be very lon (…)
+
+
+
+ 2 weeks ago
+
+ No.
+ 00000001
+
+
+
+
+ {comment.content ? (
+ <>
+ {comment.content}
+ >
+ ) : null}
+
+
+
+ {comment.replyCount > 0 &&
+ Object.keys(comment.replies.pages.topAll.comments).map(() => {
+ const renderedComments = renderComments(comment.replies.pages.topAll.comments);
+ return renderedComments.map(reply => {
+ let counter = 1;
+ counter++;
+ const counterString = counter.toString().padStart(8, '0');
+ return (
+
+ )
+ })
+ })}
+
+
@@ -428,56 +511,55 @@ const Thread = ({ setBodyStyle }) => {
-
-
-
-
- Style:
-
-
+
+
+
+
+ Style:
+
+
+
+ {comment ? (
+ comment.replyCount > 0 ? (
+ {comment.replyCount} replies
+ ) : (
+ No replies yet
+ )) : (
+ null
+ )}
+
+
+
+
>
) : (
diff --git a/src/components/styles/Board.styled.jsx b/src/components/styles/Board.styled.jsx
index 25118eb3..77923399 100644
--- a/src/components/styles/Board.styled.jsx
+++ b/src/components/styles/Board.styled.jsx
@@ -1,4 +1,4 @@
-import styled, { keyframes } from 'styled-components';
+import styled from 'styled-components';
export const Container = styled.div`
font-size: 10pt;
@@ -1680,6 +1680,11 @@ export const BoardForm = styled.div`
.quotelink-mobile:hover {
color: red !important;
}
+
+ p:first-of-type::before {
+ content: '>';
+ color: #789922;
+ }
}
}
}`;
@@ -1778,6 +1783,17 @@ export const BoardForm = styled.div`
blockquote {
font-size: 11pt;
+
+ .quotelink-mobile {
+ color: #d00;
+ text-decoration: underline;
+ font-family: arial;
+ }
+
+ p:first-of-type::before {
+ content: '>';
+ color: #789922;
+ }
}
}
}`;
@@ -1885,6 +1901,11 @@ export const BoardForm = styled.div`
.quotelink-mobile:hover {
color: red !important;
}
+
+ p:first-of-type::before {
+ content: '>';
+ color: #789922;
+ }
}
}
}`;
@@ -1983,6 +2004,16 @@ export const BoardForm = styled.div`
blockquote {
font-size: 12pt;
+
+ .quotelink-mobile {
+ color: #d00;
+ text-decoration: underline;
+ }
+
+ p:first-of-type::before {
+ content: '>';
+ color: #789922;
+ }
}
}
}`;
@@ -2091,11 +2122,17 @@ export const BoardForm = styled.div`
.quotelink-mobile {
color: #81A2BE;
+ text-decoration: underline;
}
.quotelink-mobile:hover {
color: #5F89AC;
}
+
+ p:first-of-type::before {
+ content: '>';
+ color: #b5bd68;
+ }
}
}`;
@@ -2198,11 +2235,17 @@ export const BoardForm = styled.div`
.quotelink-mobile {
color: #f60;
+ text-decoration: underline;
}
.quotelink-mobile:hover {
color: #ff3300;
}
+
+ p:first-of-type::before {
+ content: '>';
+ color: #789922;
+ }
}
}`;
@@ -3091,7 +3134,7 @@ export const BoardForm = styled.div`
blockquote > p:first-of-type::before {
content: '>';
- color: #789922;
+ color: #b5bd68;
}
.quotelink {
diff --git a/src/components/styles/Thread.styled.jsx b/src/components/styles/Thread.styled.jsx
index f2f9f6bb..f07b38fa 100644
--- a/src/components/styles/Thread.styled.jsx
+++ b/src/components/styles/Thread.styled.jsx
@@ -662,8 +662,7 @@ export const TopBar = styled.div`
}
hr {
- margin-left: calc((100% - 100vw) / 2);
- margin-right: calc((100% - 100vw) / 2);
+ display: none;
}
}