2024-04-24 15:20:55 +02:00
|
|
|
.postFormTable {
|
|
|
|
|
width: auto;
|
|
|
|
|
text-align: left;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
display: table;
|
|
|
|
|
border-spacing: 1px;
|
2024-03-20 13:00:11 +01:00
|
|
|
}
|
|
|
|
|
|
2024-04-24 16:47:51 +02:00
|
|
|
.postFormDesktop {
|
|
|
|
|
font-size: var(--post-form-toggle-font-size);
|
|
|
|
|
font-weight: var(--post-form-toggle-font-weight);
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormMobile {
|
2024-03-21 15:21:33 +01:00
|
|
|
text-align: center;
|
2024-05-31 15:16:21 +02:00
|
|
|
margin-top: -2px;
|
2024-04-24 15:20:55 +02:00
|
|
|
}
|
|
|
|
|
|
2024-04-08 17:13:02 +02:00
|
|
|
.closed {
|
|
|
|
|
font-size: x-large;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: red;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
padding-top: 100px;
|
|
|
|
|
padding-bottom: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormTable td:first-child {
|
2024-04-24 08:48:31 +02:00
|
|
|
background-color: var(--post-form-field-title-background-color);
|
|
|
|
|
color: var(--post-form-field-title-color);
|
|
|
|
|
font-weight: var(--post-form-field-title-font-weight);
|
|
|
|
|
border: var(--post-form-field-border);
|
2024-04-24 11:26:15 +02:00
|
|
|
padding: var(--post-form-field-title-padding);
|
|
|
|
|
font-size: var(--post-form-field-title-font-size);
|
2024-04-24 08:48:31 +02:00
|
|
|
width: 80px;
|
2024-04-28 17:12:19 +02:00
|
|
|
text-transform: capitalize;
|
2024-04-24 08:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormTable td {
|
2024-04-24 08:48:31 +02:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: 10pt;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2024-04-24 11:26:15 +02:00
|
|
|
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormTable input[type="text"], .postFormTable textarea {
|
2024-04-24 11:26:15 +02:00
|
|
|
border: var(--post-form-field-input-border, revert);
|
|
|
|
|
font-family: var(--post-form-field-font-family, revert);
|
|
|
|
|
appearance: var(--post-form-field-input-appearance, revert);
|
|
|
|
|
outline: var(--post-form-field-input-outline, revert);
|
|
|
|
|
background-color: var(--post-form-field-input-background-color, revert);
|
|
|
|
|
color: var(--post-form-field-input-color, revert);
|
|
|
|
|
padding: 2px 4px 3px;
|
|
|
|
|
font-size: 10pt;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormTable input[type="text"]:focus, .postFormTable textarea:focus {
|
2024-04-24 11:26:15 +02:00
|
|
|
border: var(--post-form-field-input-focus-border, revert);
|
|
|
|
|
}
|
2024-04-24 08:48:31 +02:00
|
|
|
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormTable td > input[type="text"] {
|
2024-04-24 08:48:31 +02:00
|
|
|
width: 244px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormTable textarea {
|
2024-04-24 08:48:31 +02:00
|
|
|
width: 292px;
|
|
|
|
|
|
|
|
|
|
/* textareas have a gap below them that differs along browsers https://stackoverflow.com/a/7144960 */
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormTable button {
|
2024-04-24 11:26:15 +02:00
|
|
|
margin-left: 2px;
|
2024-04-28 17:12:19 +02:00
|
|
|
bottom: 0px;
|
2024-04-24 11:26:15 +02:00
|
|
|
filter: var(--filter80);
|
2024-04-28 17:12:19 +02:00
|
|
|
position: absolute;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-transform: capitalize;
|
2024-04-24 11:26:15 +02:00
|
|
|
}
|
|
|
|
|
|
2024-04-24 08:48:31 +02:00
|
|
|
.linkType {
|
|
|
|
|
font-weight: normal;
|
2024-05-31 16:10:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.linkType td {
|
|
|
|
|
height: 20px;
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spoilerButton input[type="checkbox"] {
|
|
|
|
|
margin: 0 3px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spoilerButton td {
|
|
|
|
|
padding-top: 2px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spoilerButton {
|
|
|
|
|
font-weight: normal;
|
2024-04-24 08:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
2024-03-21 15:21:33 +01:00
|
|
|
@media (max-width: 640px) {
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormDesktop {
|
2024-03-21 15:21:33 +01:00
|
|
|
display: none;
|
|
|
|
|
}
|
2024-05-31 15:16:21 +02:00
|
|
|
|
|
|
|
|
.postFormTable {
|
|
|
|
|
padding-top: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postFormTable td input {
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postFormTable td textarea {
|
|
|
|
|
height: 80px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postFormTable button {
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
}
|
2024-03-21 15:21:33 +01:00
|
|
|
}
|
|
|
|
|
|
2024-04-10 13:16:07 +02:00
|
|
|
@media (min-width: 640px) {
|
2024-04-24 15:20:55 +02:00
|
|
|
.postFormMobile {
|
2024-03-21 15:21:33 +01:00
|
|
|
display: none;
|
|
|
|
|
}
|
2024-03-20 13:00:11 +01:00
|
|
|
}
|