mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
389 lines
7.6 KiB
React
389 lines
7.6 KiB
React
import styled from 'styled-components';
|
|
import Modal from 'react-modal';
|
|
|
|
export const StyledModal = styled(Modal)`
|
|
.panel {
|
|
top: 120px;
|
|
width: 400px;
|
|
height: auto;
|
|
max-height: 80%;
|
|
left: calc(50% - 25px);
|
|
overflow-y: auto;
|
|
margin-left: -178px;
|
|
position: absolute;
|
|
padding: 2px 5px 5px;
|
|
font-size: 14px;
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
|
|
|
|
@media (max-width: 480px) {
|
|
width: 320px !important;
|
|
max-height: 60% !important;
|
|
left: calc(50% + 15px) !important;
|
|
}
|
|
}
|
|
|
|
.panel-board {
|
|
top: 120px;
|
|
width: 700px;
|
|
height: auto;
|
|
max-height: 80%;
|
|
left: calc(50% - 350px);
|
|
overflow-y: auto;
|
|
position: absolute;
|
|
padding: 2px 5px 5px;
|
|
font-size: 14px;
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
|
|
|
|
@media (max-width: 800px) {
|
|
width: 80%;
|
|
max-height: 60%;
|
|
left: calc(50% - 40%);
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
width: 320px;
|
|
max-height: 60%;
|
|
left: calc(50% - 160px);
|
|
}
|
|
}
|
|
|
|
.panel-header {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
margin-bottom: 5px;
|
|
margin-top: 5px;
|
|
padding-bottom: 5px;
|
|
text-align: center;
|
|
line-height: 14px;
|
|
}
|
|
|
|
.icon {
|
|
right: 5px;
|
|
width: 18px;
|
|
height: 18px;
|
|
display: block;
|
|
background-size: 100%;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 5px;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 14px;
|
|
padding: 0;
|
|
margin: 10px 0 5px;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.settings-cat {
|
|
margin: 5px;
|
|
}
|
|
|
|
.settings-cat-lbl {
|
|
font-weight: 700;
|
|
margin: 10px 0 5px;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.settings-option {
|
|
margin: 5px 0 5px 0;
|
|
padding-left: 33px;
|
|
display: inline-block;
|
|
position: relative;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.settings-tip {
|
|
font-size: 0.85em;
|
|
margin: 0 0 20px 0;
|
|
padding-left: 33px;
|
|
}
|
|
|
|
.settings-option.disc::before {
|
|
content: '';
|
|
display: inline-block;
|
|
width: 4px;
|
|
height: 4px;
|
|
border-radius: 50%;
|
|
background-color: currentColor;
|
|
position: absolute;
|
|
margin-left: -19px;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.settings-input {
|
|
position: relative;
|
|
padding-left: 23px;
|
|
}
|
|
|
|
.settings-input::before {
|
|
content: '';
|
|
display: block;
|
|
width: 10px;
|
|
height: 1px;
|
|
background-color: currentColor;
|
|
position: absolute;
|
|
left: 35px;
|
|
top: 13px;
|
|
}
|
|
|
|
.settings-input::after {
|
|
content: '';
|
|
display: block;
|
|
width: 1px;
|
|
height: 12px;
|
|
background-color: currentColor;
|
|
position: absolute;
|
|
left: 35px;
|
|
top: 1px;
|
|
}
|
|
|
|
textarea {
|
|
width: 80%;
|
|
margin-left: 7%;
|
|
min-height: 50px;
|
|
}
|
|
|
|
.board-settings {
|
|
width: 83%;
|
|
margin-bottom: 20px;
|
|
margin-top: 20px;
|
|
height: 400px;
|
|
}
|
|
|
|
.save-button {
|
|
margin: auto;
|
|
margin-bottom: 10px;
|
|
margin-top: 20px;
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#save-board-settings,
|
|
#reset-board-settings {
|
|
text-align: center;
|
|
}
|
|
|
|
.settings-info {
|
|
overflow-x: auto;
|
|
max-width: 100%;
|
|
margin: 10px 10px 0 10px;
|
|
font-size: 0.9em;
|
|
line-break: anywhere;
|
|
}
|
|
|
|
.settings-info strong {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
${({ selectedStyle }) => {
|
|
switch (selectedStyle) {
|
|
case 'Yotsuba':
|
|
return `
|
|
.panel, .panel-board {
|
|
background-color: #f0e0d6;
|
|
}
|
|
|
|
.panel-header {
|
|
border-bottom: 1px solid #d9bfb7;
|
|
}
|
|
|
|
.icon {
|
|
background-image: url(assets/buttons/cross_red.png);
|
|
}
|
|
|
|
.plus {
|
|
background-image: url(assets/buttons/post_expand_plus_red.png);
|
|
}
|
|
|
|
.minus {
|
|
background-image: url(assets/buttons/post_expand_minus_red.png);
|
|
}
|
|
|
|
.all-button {
|
|
color: #00e !important;
|
|
|
|
:hover {
|
|
color: red !important;
|
|
}
|
|
}`;
|
|
|
|
case 'Yotsuba-B':
|
|
return `
|
|
.panel, .panel-board {
|
|
background-color: #d6daf0;
|
|
}
|
|
|
|
.panel-header {
|
|
border-bottom: 1px solid #b7c5d9;
|
|
}
|
|
|
|
.icon {
|
|
background-image: url(assets/buttons/cross_blue.png);
|
|
}
|
|
|
|
.plus {
|
|
background-image: url(assets/buttons/post_expand_plus_blue.png);
|
|
}
|
|
|
|
.minus {
|
|
background-image: url(assets/buttons/post_expand_minus_blue.png);
|
|
}
|
|
|
|
.all-button {
|
|
color: #34345c !important;
|
|
|
|
:hover {
|
|
color: #d00 !important;
|
|
}
|
|
}`;
|
|
|
|
case 'Futaba':
|
|
return `
|
|
.panel, .panel-board {
|
|
background-color: #f0e0d6;
|
|
}
|
|
|
|
.panel-header {
|
|
border-bottom: 1px solid rgba(0,0,0,.2);
|
|
}
|
|
|
|
.icon {
|
|
background-image: url(assets/buttons/cross_red.png);
|
|
}
|
|
|
|
.plus {
|
|
background-image: url(assets/buttons/post_expand_plus_red.png);
|
|
}
|
|
|
|
.minus {
|
|
background-image: url(assets/buttons/post_expand_minus_red.png);
|
|
}
|
|
|
|
.all-button {
|
|
color: #00e !important;
|
|
|
|
:hover {
|
|
color: red !important;
|
|
}
|
|
}`;
|
|
|
|
case 'Burichan':
|
|
return `
|
|
.panel, .panel-board {
|
|
background-color: #d6daf0;
|
|
}
|
|
|
|
.panel-header {
|
|
border-bottom: 1px solid rgba(0,0,0,.2);
|
|
}
|
|
|
|
.icon {
|
|
background-image: url(assets/buttons/cross_blue.png);
|
|
}
|
|
|
|
.plus {
|
|
background-image: url(assets/buttons/post_expand_plus_blue.png);
|
|
}
|
|
|
|
.minus {
|
|
background-image: url(assets/buttons/post_expand_minus_blue.png);
|
|
}
|
|
|
|
.all-button {
|
|
color: #34345c !important;
|
|
|
|
:hover {
|
|
color: #d00 !important;
|
|
}
|
|
}`;
|
|
|
|
case 'Tomorrow':
|
|
return `
|
|
.panel, .panel-board {
|
|
background-color: #282a2e;
|
|
}
|
|
|
|
.panel-header {
|
|
border-bottom: 1px solid #111;
|
|
}
|
|
|
|
.icon {
|
|
background-image: url(assets/buttons/cross_dark.png);
|
|
}
|
|
|
|
.plus {
|
|
background-image: url(assets/buttons/post_expand_plus_dark.png);
|
|
}
|
|
|
|
.minus {
|
|
background-image: url(assets/buttons/post_expand_minus_dark.png);
|
|
}
|
|
|
|
.all-button {
|
|
color: #81a2be !important;
|
|
|
|
:hover {
|
|
color: #5f89ac !important;
|
|
}
|
|
}
|
|
|
|
button, select, input {
|
|
filter: brightness(80%);
|
|
}
|
|
|
|
textarea {
|
|
background-color: #282a2e;
|
|
color: #c5c8c6;
|
|
border: 1px solid #000;
|
|
}`;
|
|
|
|
case 'Photon':
|
|
return `
|
|
.panel, .panel-board {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.panel-header {
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.20);
|
|
}
|
|
|
|
.icon {
|
|
background-image: url(assets/buttons/cross_photon.png);
|
|
}
|
|
|
|
.plus {
|
|
background-image: url(assets/buttons/post_expand_plus_photon.png);
|
|
}
|
|
|
|
.minus {
|
|
background-image: url(assets/buttons/post_expand_minus_photon.png);
|
|
}
|
|
|
|
.all-button {
|
|
color: #f60 !important;
|
|
|
|
:hover {
|
|
color: #f30 !important;
|
|
}
|
|
}`;
|
|
|
|
default:
|
|
return '';
|
|
}
|
|
}}
|
|
`;
|