change stylings

This commit is contained in:
HF 2022-08-19 15:23:01 +02:00
parent 53b9aeeec7
commit eefa210ed0
10 changed files with 193 additions and 188 deletions

View File

@ -116,9 +116,9 @@ Configuration takes place in the environment variables that are defined in ecosy
Notes: Notes:
- HOST / PORT is the host on which the ppfun server is listening. In example: If you have a reverse proxy on the same machine, HOST should still be unset or localhost, because it's where the proxy forwards to. - HOST / PORT is the host on which the ppfun server is listening. In example: If you have a reverse proxy on the same machine, HOST should still be unset or localhost, because it's where the proxy forwards to.
- to be able to use USE_PROXYCHECK effectively, you have to have an account on proxycheck.io and PROXYCHECK_KEY set. - to be able to use USE_PROXYCHECK you have to have an account on proxycheck.io and set PROXYCHECK_KEY.
- Admins are users with 0cd and access to `Admintools`in their User Menu for image-upload and whatever - Admins are users with 0cd and access to `Admintools`in their User Menu
- You can find out the id of a user by looking into the logs (i.e. `info: {ip} / {id} wants to place 2 in (1701, -8315)`) when he places a pixel or by checking the MySql Users database - You can find out the id of a user by wiriting a message in chat and pinging
- pixelplanet uses the unix command sendmail for sending verification and password reset mails. If you don't want to set up your own mail server, look into [ssmtp](https://wiki.archlinux.org/title/SSMTP), which provides a sendmail interface that forwards to other providers like gmail. - pixelplanet uses the unix command sendmail for sending verification and password reset mails. If you don't want to set up your own mail server, look into [ssmtp](https://wiki.archlinux.org/title/SSMTP), which provides a sendmail interface that forwards to other providers like gmail.
- default configuartion values can be seen in `src/core/config.js` - default configuartion values can be seen in `src/core/config.js`
- The HTML for SocialMedia logins is in src/componets/UserAreaModal.js , delete stuff from there if you don't need it. The HTML for the Help Screen is in src/components/HelpModal.js - The HTML for SocialMedia logins is in src/componets/UserAreaModal.js , delete stuff from there if you don't need it. The HTML for the Help Screen is in src/components/HelpModal.js

View File

@ -84,7 +84,7 @@ function Admintools() {
}, []); }, []);
return ( return (
<div style={{ textAlign: 'center', paddingLeft: '5%', paddingRight: '5%' }}> <div className="content">
{resp && ( {resp && (
<div className="respbox"> <div className="respbox">
{resp.split('\n').map((line) => ( {resp.split('\n').map((line) => (

View File

@ -186,7 +186,7 @@ function Converter() {
const gimpLink = <a href="https://www.gimp.org">GIMP</a>; const gimpLink = <a href="https://www.gimp.org">GIMP</a>;
return ( return (
<div style={{ textAlign: 'center' }}> <div className="content">
<div>{t`Choose Canvas`}:&nbsp; <div>{t`Choose Canvas`}:&nbsp;
<select <select
value={selectedCanvas} value={selectedCanvas}

View File

@ -215,7 +215,7 @@ function ModCanvastools() {
: `Status: ${cleanerstats.method} from ${cleanerstats.tl} to ${cleanerstats.br} on canvas ${canvases[cleanerstats.canvasId].ident} to ${cleanerstats.percent} done`; : `Status: ${cleanerstats.method} from ${cleanerstats.tl} to ${cleanerstats.br} on canvas ${canvases[cleanerstats.canvasId].ident} to ${cleanerstats.percent} done`;
return ( return (
<div style={{ textAlign: 'center', paddingLeft: '5%', paddingRight: '5%' }}> <div className="content">
{resp && ( {resp && (
<div className="respbox"> <div className="respbox">
{resp.split('\n').map((line) => ( {resp.split('\n').map((line) => (

View File

@ -96,7 +96,8 @@ function ModWatchtools() {
const cidColumn = (types) ? (types.indexOf('cid')) : -1; const cidColumn = (types) ? (types.indexOf('cid')) : -1;
return ( return (
<div style={{ textAlign: 'center', paddingLeft: '5%', paddingRight: '5%' }}> <>
<div className="content">
{resp && ( {resp && (
<div className="respbox"> <div className="respbox">
{resp.split('\n').map((line) => ( {resp.split('\n').map((line) => (
@ -123,7 +124,9 @@ function ModWatchtools() {
selectCanvas(sel.options[sel.selectedIndex].value); selectCanvas(sel.options[sel.selectedIndex].value);
}} }}
> >
{Object.keys(canvases).filter((c) => !canvases[c].v).map((canvas) => ( {Object.keys(canvases)
.filter((c) => !canvases[c].v)
.map((canvas) => (
<option <option
key={canvas} key={canvas}
value={canvas} value={canvas}
@ -263,6 +266,7 @@ function ModWatchtools() {
> >
{(submitting) ? '...' : t`Get Users`} {(submitting) ? '...' : t`Get Users`}
</button> </button>
</div>
<br /> <br />
{(rows && columns && types) && ( {(rows && columns && types) && (
<React.Fragment key="pxltable"> <React.Fragment key="pxltable">
@ -391,7 +395,7 @@ function ModWatchtools() {
</table> </table>
</React.Fragment> </React.Fragment>
)} )}
</div> </>
); );
} }

View File

@ -30,7 +30,7 @@ function Modtools() {
return ( return (
<> <>
<div style={{ textAlign: 'center' }}> <div className="content">
{parts.map((part, ind) => ( {parts.map((part, ind) => (
<React.Fragment key={part}> <React.Fragment key={part}>
<span <span
@ -45,8 +45,8 @@ function Modtools() {
&& <span className="hdivider" />} && <span className="hdivider" />}
</React.Fragment> </React.Fragment>
))} ))}
</div>
<div className="modaldivider" /> <div className="modaldivider" />
</div>
{Content && <Content />} {Content && <Content />}
</> </>
); );

View File

@ -20,7 +20,7 @@ const Rankings = () => {
return ( return (
<> <>
<div> <div className="content">
<span <span
role="button" role="button"
tabIndex={-1} tabIndex={-1}

View File

@ -21,7 +21,7 @@ const Tabs = ({ children, activeTab, setActiveTab }) => (
); );
})} })}
</ol> </ol>
<div className="content"> <div className="tab-content">
{children.map((child) => { {children.map((child) => {
if (!child.props || child.props.label !== activeTab) { if (!child.props || child.props.label !== activeTab) {
return undefined; return undefined;

View File

@ -56,7 +56,7 @@ const UserAreaContent = () => {
const Area = AREAS[area]; const Area = AREAS[area];
return ( return (
<div style={{ textAlign: 'center' }}> <div className="content">
<UserMessages /> <UserMessages />
<Stat <Stat
text={t`Todays Placed Pixels`} text={t`Todays Placed Pixels`}

View File

@ -132,6 +132,7 @@ a:hover {
} }
.tab-list { .tab-list {
font-size: 16px;
border-bottom: 1px solid #ccc; border-bottom: 1px solid #ccc;
padding-left: 0; padding-left: 0;
} }
@ -269,13 +270,6 @@ tr:nth-child(even) {
height: 100%; height: 100%;
} }
.win-content {
position: relative;
width: calc(100% - 3px);
height: calc(100% - 28px);
overflow-y: auto;
}
.contextmenu { .contextmenu {
position: absolute; position: absolute;
font-size: 12px; font-size: 12px;
@ -536,6 +530,19 @@ tr:nth-child(even) {
overflow-y: auto; overflow-y: auto;
} }
.win-content {
position: relative;
width: calc(100% - 3px);
height: calc(100% - 28px);
overflow-y: auto;
}
.modal-content, .win-content {
color: hsla(0, 0%, 0%, 0.6);
font-size: 14px;
font-weight: 500;
}
.Alert { .Alert {
overflow-y: auto; overflow-y: auto;
max-height: 100%; max-height: 100%;
@ -551,12 +558,6 @@ tr:nth-child(even) {
.content { .content {
padding-left: 5%; padding-left: 5%;
padding-right: 5%; padding-right: 5%;
color: hsla(0, 0%, 0%, 0.6);
font-size: 14px;
font-weight: 500;
line-height: normal;
position: relative;
float: none;
text-align: center; text-align: center;
} }