mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
style(AdminListModal): differentiate mod and admin role
This commit is contained in:
@@ -3,23 +3,15 @@ import Modal from 'react-modal';
|
|||||||
import Draggable from 'react-draggable';
|
import Draggable from 'react-draggable';
|
||||||
import { StyledModal } from '../styled/modals/ReplyModal.styled';
|
import { StyledModal } from '../styled/modals/ReplyModal.styled';
|
||||||
import useGeneralStore from '../../hooks/stores/useGeneralStore';
|
import useGeneralStore from '../../hooks/stores/useGeneralStore';
|
||||||
import { BoardForm } from '../styled/views/Board.styled'
|
import { BoardForm } from '../styled/views/Board.styled';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const AdminListModal = ({ isOpen, closeModal, roles }) => {
|
const AdminListModal = ({ isOpen, closeModal, roles }) => {
|
||||||
const {
|
const { selectedStyle } = useGeneralStore((state) => state);
|
||||||
selectedAddress,
|
|
||||||
selectedStyle,
|
|
||||||
selectedTitle,
|
|
||||||
} = useGeneralStore(state => state);
|
|
||||||
|
|
||||||
const [isMobile, setIsMobile] = useState(window.innerWidth <= 480);
|
const [isMobile, setIsMobile] = useState(window.innerWidth <= 480);
|
||||||
const nodeRef = useRef(null);
|
const nodeRef = useRef(null);
|
||||||
const rolesList = roles
|
const rolesList = roles ? Object.entries(roles).map(([address, { role }]) => ({ address, role })) : [];
|
||||||
? Object.entries(roles).map(([address, { role }]) => ({ address, role }))
|
|
||||||
: [];
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const handleResize = () => setIsMobile(window.innerWidth <= 480);
|
const handleResize = () => setIsMobile(window.innerWidth <= 480);
|
||||||
@@ -31,44 +23,52 @@ const AdminListModal = ({ isOpen, closeModal, roles }) => {
|
|||||||
};
|
};
|
||||||
}, [setIsMobile]);
|
}, [setIsMobile]);
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<StyledModal
|
<StyledModal
|
||||||
isOpen={isOpen}
|
isOpen={isOpen}
|
||||||
onRequestClose={closeModal}
|
onRequestClose={closeModal}
|
||||||
contentLabel="Reply Modal"
|
contentLabel='Reply Modal'
|
||||||
shouldCloseOnEsc={true}
|
shouldCloseOnEsc={true}
|
||||||
shouldCloseOnOverlayClick={isMobile}
|
shouldCloseOnOverlayClick={isMobile}
|
||||||
selectedStyle={selectedStyle}
|
selectedStyle={selectedStyle}
|
||||||
overlayClassName="overlay"
|
overlayClassName='overlay'
|
||||||
style={isMobile ? ({ overlay: { backgroundColor: "rgba(0,0,0,.25)" }}) : ({ overlay: { backgroundColor: "rgba(0,0,0,0)" }})
|
style={isMobile ? { overlay: { backgroundColor: 'rgba(0,0,0,.25)' } } : { overlay: { backgroundColor: 'rgba(0,0,0,0)' } }}
|
||||||
}
|
>
|
||||||
>
|
<Draggable handle='.modal-header' nodeRef={nodeRef} disabled={isMobile}>
|
||||||
<Draggable handle=".modal-header" nodeRef={nodeRef} disabled={isMobile}>
|
<div
|
||||||
<div className="modal-content" ref={nodeRef}
|
className='modal-content'
|
||||||
style={{
|
ref={nodeRef}
|
||||||
maxWidth: '300px',
|
style={{
|
||||||
maxHeight: '250px',
|
|
||||||
}}>
|
|
||||||
<div className="modal-header">
|
|
||||||
Admins for {selectedTitle ?? selectedAddress}
|
|
||||||
<button className="icon" onClick={() => closeModal()} title="close" />
|
|
||||||
</div>
|
|
||||||
<div className='list' style={{
|
|
||||||
padding: '10px',
|
|
||||||
maxHeight: '200px',
|
|
||||||
maxWidth: '300px',
|
maxWidth: '300px',
|
||||||
overflowY: 'auto',
|
maxHeight: '250px',
|
||||||
overflowX: 'hidden',
|
}}
|
||||||
wordWrap: 'break-word',
|
>
|
||||||
wordBreak: 'break-all',
|
<button className='icon' onClick={() => closeModal()} title='close' />
|
||||||
}}>
|
<div className='modal-header' style={{ margin: '10px 10px 0px 10px' }}>
|
||||||
<BoardForm selectedStyle={selectedStyle} style={{all: 'unset'}}>
|
Moderators
|
||||||
{rolesList.map(({ address, role }, index) => (
|
</div>
|
||||||
<p key={index}>
|
<div
|
||||||
• <Link to={() => {}} className="quote-link">u/{address}</Link>: {role}
|
className='list'
|
||||||
</p>
|
style={{
|
||||||
))}
|
padding: '10px',
|
||||||
|
maxHeight: '200px',
|
||||||
|
maxWidth: '300px',
|
||||||
|
overflowY: 'auto',
|
||||||
|
overflowX: 'hidden',
|
||||||
|
wordWrap: 'break-word',
|
||||||
|
wordBreak: 'break-all',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<BoardForm selectedStyle={selectedStyle} style={{ all: 'unset' }}>
|
||||||
|
{rolesList.map(({ address, role }, index) => (
|
||||||
|
<p key={index}>
|
||||||
|
•{' '}
|
||||||
|
<Link to={() => {}} className='quote-link'>
|
||||||
|
u/{address}
|
||||||
|
</Link>
|
||||||
|
: {role}
|
||||||
|
</p>
|
||||||
|
))}
|
||||||
</BoardForm>
|
</BoardForm>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -15,7 +15,8 @@ export const Container = styled.div`
|
|||||||
|
|
||||||
export const NavBar = styled.div`
|
export const NavBar = styled.div`
|
||||||
@media (min-width: 480px) {
|
@media (min-width: 480px) {
|
||||||
.board-select, .page-jump {
|
.board-select,
|
||||||
|
.page-jump {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,7 +34,8 @@ export const NavBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
.boardList, .nav {
|
.boardList,
|
||||||
|
.nav {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -81,9 +83,9 @@ export const NavBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
${({ selectedStyle }) => {
|
${({ selectedStyle }) => {
|
||||||
switch (selectedStyle) {
|
switch (selectedStyle) {
|
||||||
case 'Yotsuba':
|
case 'Yotsuba':
|
||||||
return `font-size: 9pt;
|
return `font-size: 9pt;
|
||||||
color: #b86;
|
color: #b86;
|
||||||
|
|
||||||
a, #button-span {
|
a, #button-span {
|
||||||
@@ -110,8 +112,8 @@ export const NavBar = styled.div`
|
|||||||
color: navy;
|
color: navy;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Yotsuba-B':
|
case 'Yotsuba-B':
|
||||||
return `font-size: 9pt;
|
return `font-size: 9pt;
|
||||||
color: #89a;
|
color: #89a;
|
||||||
|
|
||||||
a, #button-span {
|
a, #button-span {
|
||||||
@@ -221,10 +223,11 @@ export const NavBar = styled.div`
|
|||||||
border-bottom: 2px solid #ccc;
|
border-bottom: 2px solid #ccc;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}`;
|
}}
|
||||||
|
`;
|
||||||
|
|
||||||
export const Header = styled.div`
|
export const Header = styled.div`
|
||||||
${({ selectedStyle }) => {
|
${({ selectedStyle }) => {
|
||||||
@@ -419,9 +422,9 @@ export const Header = styled.div`
|
|||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
.offline {
|
.offline {
|
||||||
@@ -464,15 +467,15 @@ export const Break = styled.hr`
|
|||||||
border-top: 1px solid #ddd;
|
border-top: 1px solid #ddd;
|
||||||
height: 0;`;
|
height: 0;`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const PostFormLink = styled.div`
|
export const PostFormLink = styled.div`
|
||||||
@media (min-width: 480px) {
|
@media (min-width: 480px) {
|
||||||
display: ${props => (props.showPostFormLink ? 'block' : 'none')};
|
display: ${(props) => (props.showPostFormLink ? 'block' : 'none')};
|
||||||
|
|
||||||
#post-form-link-mobile {
|
#post-form-link-mobile {
|
||||||
display: none;
|
display: none;
|
||||||
@@ -480,7 +483,7 @@ export const PostFormLink = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
display: ${props => (props.showPostFormLink ? 'block' : 'none')};
|
display: ${(props) => (props.showPostFormLink ? 'block' : 'none')};
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
|
|
||||||
#post-form-link-desktop {
|
#post-form-link-desktop {
|
||||||
@@ -488,11 +491,11 @@ export const PostFormLink = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
#post-form-link-mobile {
|
#post-form-link-mobile {
|
||||||
margin: 11px 0;
|
margin: 11px 0;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -621,14 +624,14 @@ export const PostFormLink = styled.div`
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const PostFormTable = styled.table`
|
export const PostFormTable = styled.table`
|
||||||
display: ${props => (props.showPostForm ? 'table' : 'none')};
|
display: ${(props) => (props.showPostForm ? 'table' : 'none')};
|
||||||
width: 418px;
|
width: 418px;
|
||||||
border-spacing: 1px;
|
border-spacing: 1px;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
@@ -1146,14 +1149,14 @@ export const PostFormTable = styled.table`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
#t-help {
|
#t-help {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-top: -5px
|
margin-top: -5px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1250,9 +1253,9 @@ export const PostForm = styled.div`
|
|||||||
color: #ff3300;
|
color: #ff3300;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1397,9 +1400,9 @@ export const TopBar = styled.div`
|
|||||||
color: #ff3300 !important;
|
color: #ff3300 !important;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
.ellipsis {
|
.ellipsis {
|
||||||
@@ -1407,10 +1410,10 @@ export const TopBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ellipsis:after {
|
.ellipsis:after {
|
||||||
content: "\\2026";
|
content: '\\2026';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
|
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
|
||||||
animation: ellipsis steps(4,end) 1500ms infinite;
|
animation: ellipsis steps(4, end) 1500ms infinite;
|
||||||
width: 0px;
|
width: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -1441,7 +1444,7 @@ export const TopBar = styled.div`
|
|||||||
max-width: calc(100vw - 50vw);
|
max-width: calc(100vw - 50vw);
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: "";
|
text-overflow: '';
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1450,10 +1453,10 @@ export const TopBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ellipsis-all:after {
|
.ellipsis-all:after {
|
||||||
content: "\\2026";
|
content: '\\2026';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
|
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
|
||||||
animation: ellipsis steps(4,end) 1500ms infinite;
|
animation: ellipsis steps(4, end) 1500ms infinite;
|
||||||
width: 0px;
|
width: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -1494,7 +1497,7 @@ export const TopBar = styled.div`
|
|||||||
max-width: 90vw;
|
max-width: 90vw;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: "";
|
text-overflow: '';
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1503,10 +1506,10 @@ export const TopBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ellipsis-all:after {
|
.ellipsis-all:after {
|
||||||
content: "\\2026";
|
content: '\\2026';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
|
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
|
||||||
animation: ellipsis steps(4,end) 1500ms infinite;
|
animation: ellipsis steps(4, end) 1500ms infinite;
|
||||||
width: 0px;
|
width: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -1684,10 +1687,10 @@ export const TopBar = styled.div`
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const BoardForm = styled.div`
|
export const BoardForm = styled.div`
|
||||||
@@ -1695,11 +1698,15 @@ export const BoardForm = styled.div`
|
|||||||
margin-right: 14px;
|
margin-right: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.capcode-admin {
|
||||||
|
color: red !important;
|
||||||
|
}
|
||||||
|
|
||||||
.ellipsis:after {
|
.ellipsis:after {
|
||||||
content: "\\2026";
|
content: '\\2026';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
|
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
|
||||||
animation: ellipsis steps(4,end) 1500ms infinite;
|
animation: ellipsis steps(4, end) 1500ms infinite;
|
||||||
width: 0px;
|
width: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -1793,9 +1800,9 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
${({ selectedStyle }) => {
|
${({ selectedStyle }) => {
|
||||||
switch (selectedStyle) {
|
switch (selectedStyle) {
|
||||||
case 'Yotsuba':
|
case 'Yotsuba':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #f0c0b0 !important;
|
background-color: #f0c0b0 !important;
|
||||||
border: 1px solid #d99f91 !important;
|
border: 1px solid #d99f91 !important;
|
||||||
border-left: none !important;
|
border-left: none !important;
|
||||||
@@ -1821,8 +1828,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Yotsuba-B':
|
case 'Yotsuba-B':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #d6bad0 !important;
|
background-color: #d6bad0 !important;
|
||||||
border: 1px solid #ba9dbf !important;
|
border: 1px solid #ba9dbf !important;
|
||||||
border-left: none !important;
|
border-left: none !important;
|
||||||
@@ -1848,8 +1855,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Futaba':
|
case 'Futaba':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #f0c0b0 !important;
|
background-color: #f0c0b0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1872,8 +1879,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Burichan':
|
case 'Burichan':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #d6bad0 !important;
|
background-color: #d6bad0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1896,8 +1903,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Tomorrow':
|
case 'Tomorrow':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #1d1d21 !important;
|
background-color: #1d1d21 !important;
|
||||||
outline: 1px solid #111 !important;
|
outline: 1px solid #111 !important;
|
||||||
}
|
}
|
||||||
@@ -1920,8 +1927,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Photon':
|
case 'Photon':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #ccc !important;
|
background-color: #ccc !important;
|
||||||
outline: 1px solid #ccc !important;
|
outline: 1px solid #ccc !important;
|
||||||
}
|
}
|
||||||
@@ -1944,7 +1951,6 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
@@ -2047,7 +2053,7 @@ export const BoardForm = styled.div`
|
|||||||
float: left !important;
|
float: left !important;
|
||||||
font-weight: 700 !important;
|
font-weight: 700 !important;
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
height: .5em !important;
|
height: 0.5em !important;
|
||||||
font-size: 16px !important;
|
font-size: 16px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2207,12 +2213,12 @@ export const BoardForm = styled.div`
|
|||||||
width: 1em !important;
|
width: 1em !important;
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
outline: none !important;
|
outline: none !important;
|
||||||
transform: rotate(90deg)!important;
|
transform: rotate(90deg) !important;
|
||||||
margin: 4px -5px 0 4px !important;
|
margin: 4px -5px 0 4px !important;
|
||||||
float: left !important;
|
float: left !important;
|
||||||
font-weight: 700 !important;
|
font-weight: 700 !important;
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
height: .5em !important;
|
height: 0.5em !important;
|
||||||
font-size: 16px !important;
|
font-size: 16px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2225,7 +2231,8 @@ export const BoardForm = styled.div`
|
|||||||
float: right;
|
float: right;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
|
||||||
a, #reply-button {
|
a,
|
||||||
|
#reply-button {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2236,7 +2243,6 @@ export const BoardForm = styled.div`
|
|||||||
margin: 10px !important;
|
margin: 10px !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
${({ selectedStyle }) => {
|
${({ selectedStyle }) => {
|
||||||
@@ -3284,9 +3290,9 @@ export const BoardForm = styled.div`
|
|||||||
height: 0;
|
height: 0;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
@@ -4090,14 +4096,13 @@ export const PostMenu = styled.div`
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: transform 0.1s;
|
transition: transform 0.1s;
|
||||||
transform: ${props => props.rotated ? 'rotate(90deg)' : 'none'};
|
transform: ${(props) => (props.rotated ? 'rotate(90deg)' : 'none')};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const PostMenuMobile = styled.div`
|
export const PostMenuMobile = styled.div`
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 2.5em;
|
line-height: 2.5em;
|
||||||
width: 216px;
|
width: 216px;
|
||||||
|
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
border-right-width: 2px !important;
|
border-right-width: 2px !important;
|
||||||
@@ -4115,9 +4120,9 @@ export const PostMenuMobile = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
${({ selectedStyle }) => {
|
${({ selectedStyle }) => {
|
||||||
switch (selectedStyle) {
|
switch (selectedStyle) {
|
||||||
case 'Yotsuba':
|
case 'Yotsuba':
|
||||||
return `
|
return `
|
||||||
ul {
|
ul {
|
||||||
border: 1px solid #d9bfb7;
|
border: 1px solid #d9bfb7;
|
||||||
}
|
}
|
||||||
@@ -4133,8 +4138,8 @@ export const PostMenuMobile = styled.div`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
case 'Yotsuba-B':
|
case 'Yotsuba-B':
|
||||||
return `
|
return `
|
||||||
ul {
|
ul {
|
||||||
border: 1px solid #b7c5d9;
|
border: 1px solid #b7c5d9;
|
||||||
}
|
}
|
||||||
@@ -4150,8 +4155,8 @@ export const PostMenuMobile = styled.div`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
case 'Futaba':
|
case 'Futaba':
|
||||||
return `
|
return `
|
||||||
ul {
|
ul {
|
||||||
border: 1px solid #d9bfb7;
|
border: 1px solid #d9bfb7;
|
||||||
}
|
}
|
||||||
@@ -4167,8 +4172,8 @@ export const PostMenuMobile = styled.div`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
case 'Burichan':
|
case 'Burichan':
|
||||||
return `
|
return `
|
||||||
ul {
|
ul {
|
||||||
border: 1px solid #b7c5d9;
|
border: 1px solid #b7c5d9;
|
||||||
}
|
}
|
||||||
@@ -4184,8 +4189,8 @@ export const PostMenuMobile = styled.div`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
case 'Tomorrow':
|
case 'Tomorrow':
|
||||||
return `
|
return `
|
||||||
ul {
|
ul {
|
||||||
border: 1px solid #282a2e;
|
border: 1px solid #282a2e;
|
||||||
}
|
}
|
||||||
@@ -4200,8 +4205,8 @@ export const PostMenuMobile = styled.div`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
case 'Photon':
|
case 'Photon':
|
||||||
return `
|
return `
|
||||||
ul {
|
ul {
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
@@ -4216,8 +4221,8 @@ export const PostMenuMobile = styled.div`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}}
|
|
||||||
}
|
}
|
||||||
|
}}
|
||||||
`;
|
`;
|
||||||
@@ -2,15 +2,17 @@ import styled from 'styled-components';
|
|||||||
|
|
||||||
export const ReplyFormLink = styled.div`
|
export const ReplyFormLink = styled.div`
|
||||||
@media (min-width: 480px) {
|
@media (min-width: 480px) {
|
||||||
display: ${props => (props.showReplyFormLink ? 'block' : 'none')};
|
display: ${(props) => (props.showReplyFormLink ? 'block' : 'none')};
|
||||||
|
|
||||||
#post-form-link-mobile, #return-button-mobile, #catalog-button-mobile, #bottom-button-mobile {
|
#post-form-link-mobile,
|
||||||
|
#return-button-mobile,
|
||||||
|
#catalog-button-mobile,
|
||||||
|
#bottom-button-mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
|
|
||||||
#post-form-link-desktop {
|
#post-form-link-desktop {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@@ -24,7 +26,10 @@ export const ReplyFormLink = styled.div`
|
|||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#return-button-mobile, #catalog-button-mobile, #bottom-button-mobile, #bottom-bar-top {
|
#return-button-mobile,
|
||||||
|
#catalog-button-mobile,
|
||||||
|
#bottom-button-mobile,
|
||||||
|
#bottom-bar-top {
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
@@ -167,8 +172,8 @@ export const ReplyFormLink = styled.div`
|
|||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const TopBar = styled.div`
|
export const TopBar = styled.div`
|
||||||
@@ -186,7 +191,7 @@ export const TopBar = styled.div`
|
|||||||
max-width: calc(100vw - 50vw);
|
max-width: calc(100vw - 50vw);
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: "";
|
text-overflow: '';
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -195,10 +200,10 @@ export const TopBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ellipsis-all:after {
|
.ellipsis-all:after {
|
||||||
content: "\\2026";
|
content: '\\2026';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
|
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
|
||||||
animation: ellipsis steps(4,end) 1500ms infinite;
|
animation: ellipsis steps(4, end) 1500ms infinite;
|
||||||
width: 0px;
|
width: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -223,7 +228,7 @@ export const TopBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
.stats-all-catalog-container {
|
.stats-all-catalog-container {
|
||||||
height: 25px;
|
height: 25px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@@ -237,7 +242,7 @@ export const TopBar = styled.div`
|
|||||||
max-width: 90vw;
|
max-width: 90vw;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: "";
|
text-overflow: '';
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -246,17 +251,19 @@ export const TopBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ellipsis-all:after {
|
.ellipsis-all:after {
|
||||||
content: "\\2026";
|
content: '\\2026';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
|
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
|
||||||
animation: ellipsis steps(4,end) 1500ms infinite;
|
animation: ellipsis steps(4, end) 1500ms infinite;
|
||||||
width: 0px;
|
width: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
|
|
||||||
#return-button-desktop, #catalog-button-desktop, #bottom-button-desktop {
|
#return-button-desktop,
|
||||||
|
#catalog-button-desktop,
|
||||||
|
#bottom-button-desktop {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -293,10 +300,10 @@ export const TopBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ellipsis:after {
|
.ellipsis:after {
|
||||||
content: "\\2026";
|
content: '\\2026';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
|
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
|
||||||
animation: ellipsis steps(4,end) 1500ms infinite;
|
animation: ellipsis steps(4, end) 1500ms infinite;
|
||||||
width: 0px;
|
width: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -697,10 +704,10 @@ export const TopBar = styled.div`
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const BottomBar = styled.div`
|
export const BottomBar = styled.div`
|
||||||
@@ -709,10 +716,10 @@ export const BottomBar = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ellipsis:after {
|
.ellipsis:after {
|
||||||
content: "\\2026";
|
content: '\\2026';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
|
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
|
||||||
animation: ellipsis steps(4,end) 1500ms infinite;
|
animation: ellipsis steps(4, end) 1500ms infinite;
|
||||||
width: 0px;
|
width: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -899,11 +906,15 @@ export const BoardForm = styled.div`
|
|||||||
margin-right: 14px;
|
margin-right: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.capcode-admin {
|
||||||
|
color: red !important;
|
||||||
|
}
|
||||||
|
|
||||||
.ellipsis:after {
|
.ellipsis:after {
|
||||||
content: "\\2026";
|
content: '\\2026';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
|
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
|
||||||
animation: ellipsis steps(4,end) 1500ms infinite;
|
animation: ellipsis steps(4, end) 1500ms infinite;
|
||||||
width: 0px;
|
width: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -982,9 +993,9 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
${({ selectedStyle }) => {
|
${({ selectedStyle }) => {
|
||||||
switch (selectedStyle) {
|
switch (selectedStyle) {
|
||||||
case 'Yotsuba':
|
case 'Yotsuba':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #f0c0b0 !important;
|
background-color: #f0c0b0 !important;
|
||||||
border: 1px solid #d99f91 !important;
|
border: 1px solid #d99f91 !important;
|
||||||
border-left: none !important;
|
border-left: none !important;
|
||||||
@@ -1008,8 +1019,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Yotsuba-B':
|
case 'Yotsuba-B':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #d6bad0 !important;
|
background-color: #d6bad0 !important;
|
||||||
border: 1px solid #ba9dbf !important;
|
border: 1px solid #ba9dbf !important;
|
||||||
border-left: none !important;
|
border-left: none !important;
|
||||||
@@ -1032,8 +1043,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Futaba':
|
case 'Futaba':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #f0c0b0 !important;
|
background-color: #f0c0b0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1055,8 +1066,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Burichan':
|
case 'Burichan':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #d6bad0 !important;
|
background-color: #d6bad0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1078,8 +1089,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Tomorrow':
|
case 'Tomorrow':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #1d1d21 !important;
|
background-color: #1d1d21 !important;
|
||||||
outline: 1px solid #111 !important;
|
outline: 1px solid #111 !important;
|
||||||
}
|
}
|
||||||
@@ -1100,8 +1111,8 @@ export const BoardForm = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
case 'Photon':
|
case 'Photon':
|
||||||
return `.highlighted, .highlighted-click, .highlighted-address {
|
return `.highlighted, .highlighted-click, .highlighted-address {
|
||||||
background-color: #ccc !important;
|
background-color: #ccc !important;
|
||||||
outline: 1px solid #ccc !important;
|
outline: 1px solid #ccc !important;
|
||||||
}
|
}
|
||||||
@@ -1170,7 +1181,6 @@ export const BoardForm = styled.div`
|
|||||||
max-width: 125px;
|
max-width: 125px;
|
||||||
max-height: 125px;
|
max-height: 125px;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.thread-mobile {
|
.thread-mobile {
|
||||||
@@ -1213,7 +1223,7 @@ export const BoardForm = styled.div`
|
|||||||
float: left !important;
|
float: left !important;
|
||||||
font-weight: 700 !important;
|
font-weight: 700 !important;
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
height: .5em !important;
|
height: 0.5em !important;
|
||||||
font-size: 16px !important;
|
font-size: 16px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1250,7 +1260,6 @@ export const BoardForm = styled.div`
|
|||||||
display: block !important;
|
display: block !important;
|
||||||
clear: left !important;
|
clear: left !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
video {
|
video {
|
||||||
@@ -1356,12 +1365,12 @@ export const BoardForm = styled.div`
|
|||||||
width: 1em !important;
|
width: 1em !important;
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
outline: none !important;
|
outline: none !important;
|
||||||
transform: rotate(90deg)!important;
|
transform: rotate(90deg) !important;
|
||||||
margin: 4px -5px 0 4px !important;
|
margin: 4px -5px 0 4px !important;
|
||||||
float: left !important;
|
float: left !important;
|
||||||
font-weight: 700 !important;
|
font-weight: 700 !important;
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
height: .5em !important;
|
height: 0.5em !important;
|
||||||
font-size: 16px !important;
|
font-size: 16px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1385,7 +1394,6 @@ export const BoardForm = styled.div`
|
|||||||
margin: 10px !important;
|
margin: 10px !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
${({ selectedStyle }) => {
|
${({ selectedStyle }) => {
|
||||||
@@ -2468,9 +2476,9 @@ export const BoardForm = styled.div`
|
|||||||
background-color: #ccc !important;
|
background-color: #ccc !important;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
${({ selectedStyle }) => {
|
${({ selectedStyle }) => {
|
||||||
@@ -3207,7 +3215,7 @@ export const Footer = styled.div`
|
|||||||
#version {
|
#version {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
font-family: "arial";
|
font-family: 'arial';
|
||||||
}
|
}
|
||||||
@media (min-width: 480px) {
|
@media (min-width: 480px) {
|
||||||
#break {
|
#break {
|
||||||
@@ -3320,8 +3328,8 @@ export const Footer = styled.div`
|
|||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
`;
|
`;
|
||||||
@@ -915,7 +915,7 @@ const All = () => {
|
|||||||
Anonymous
|
Anonymous
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
(u/
|
(u/
|
||||||
<span
|
<span
|
||||||
key={`pa-${index}`}
|
key={`pa-${index}`}
|
||||||
className='poster-address address-desktop'
|
className='poster-address address-desktop'
|
||||||
|
|||||||
@@ -990,7 +990,7 @@ const Board = () => {
|
|||||||
setIsAdminListOpen(!isAdminListOpen);
|
setIsAdminListOpen(!isAdminListOpen);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
## Board Admins
|
## Board Mods
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
@@ -1149,13 +1149,13 @@ const Board = () => {
|
|||||||
)}
|
)}
|
||||||
<span className='name-block-mobile'>
|
<span className='name-block-mobile'>
|
||||||
<span
|
<span
|
||||||
className='name-mobile capcode'
|
className='name-mobile capcode-admin'
|
||||||
style={{ cursor: 'pointer' }}
|
style={{ cursor: 'pointer' }}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setIsAdminListOpen(!isAdminListOpen);
|
setIsAdminListOpen(!isAdminListOpen);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
## Board Admins
|
## Board Mods
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span className='thread-icons-mobile' style={{ float: 'right', marginRight: '18px' }}>
|
<span className='thread-icons-mobile' style={{ float: 'right', marginRight: '18px' }}>
|
||||||
@@ -1215,7 +1215,7 @@ const Board = () => {
|
|||||||
setIsAdminListOpen(!isAdminListOpen);
|
setIsAdminListOpen(!isAdminListOpen);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
## Board Admins
|
## Board Mods
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
@@ -1374,13 +1374,13 @@ const Board = () => {
|
|||||||
)}
|
)}
|
||||||
<span className='name-block-mobile'>
|
<span className='name-block-mobile'>
|
||||||
<span
|
<span
|
||||||
className='name-mobile capcode'
|
className='name-mobile capcode-admin'
|
||||||
style={{ cursor: 'pointer' }}
|
style={{ cursor: 'pointer' }}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setIsAdminListOpen(!isAdminListOpen);
|
setIsAdminListOpen(!isAdminListOpen);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
## Board Admins
|
## Board Mods
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span className='thread-icons-mobile' style={{ float: 'right', marginRight: '18px' }}>
|
<span className='thread-icons-mobile' style={{ float: 'right', marginRight: '18px' }}>
|
||||||
@@ -1457,7 +1457,7 @@ const Board = () => {
|
|||||||
setIsAdminListOpen(!isAdminListOpen);
|
setIsAdminListOpen(!isAdminListOpen);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
## Board Admins
|
## Board Mods
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
@@ -1675,13 +1675,13 @@ const Board = () => {
|
|||||||
)}
|
)}
|
||||||
<span className='name-block-mobile'>
|
<span className='name-block-mobile'>
|
||||||
<span
|
<span
|
||||||
className='name-mobile capcode'
|
className='name-mobile capcode-admin'
|
||||||
style={{ cursor: 'pointer' }}
|
style={{ cursor: 'pointer' }}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setIsAdminListOpen(!isAdminListOpen);
|
setIsAdminListOpen(!isAdminListOpen);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
## Board Admins
|
## Board Mods
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span className='thread-icons-mobile' style={{ float: 'right', marginRight: '18px' }}>
|
<span className='thread-icons-mobile' style={{ float: 'right', marginRight: '18px' }}>
|
||||||
@@ -1941,7 +1941,7 @@ const Board = () => {
|
|||||||
Anonymous
|
Anonymous
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
(u/
|
(u/
|
||||||
<span
|
<span
|
||||||
key={`pa-${index}`}
|
key={`pa-${index}`}
|
||||||
className='poster-address address-desktop'
|
className='poster-address address-desktop'
|
||||||
@@ -1960,7 +1960,7 @@ const Board = () => {
|
|||||||
)}
|
)}
|
||||||
</VerifiedAuthor>
|
</VerifiedAuthor>
|
||||||
</span>
|
</span>
|
||||||
)
|
)
|
||||||
<span
|
<span
|
||||||
key={`dt-${index}`}
|
key={`dt-${index}`}
|
||||||
className='date-time'
|
className='date-time'
|
||||||
|
|||||||
+1719
-1719
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+654
-654
File diff suppressed because it is too large
Load Diff
@@ -919,7 +919,7 @@ const Subscriptions = () => {
|
|||||||
Anonymous
|
Anonymous
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
(u/
|
(u/
|
||||||
<span
|
<span
|
||||||
key={`pa-${index}`}
|
key={`pa-${index}`}
|
||||||
className='poster-address address-desktop'
|
className='poster-address address-desktop'
|
||||||
|
|||||||
@@ -1096,7 +1096,7 @@ const Thread = () => {
|
|||||||
Anonymous
|
Anonymous
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<span
|
<span
|
||||||
className='poster-address address-desktop'
|
className='poster-address address-desktop'
|
||||||
id='reply-button'
|
id='reply-button'
|
||||||
|
|||||||
Reference in New Issue
Block a user