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;
|
2025-03-06 15:44:26 +01:00
|
|
|
margin-top: -3px;
|
2024-04-24 15:20:55 +02:00
|
|
|
}
|
|
|
|
|
|
2026-01-25 16:29:15 +08:00
|
|
|
.modQueueTitle {
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 640px) {
|
|
|
|
|
.modQueueTitle {
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-08 17:13:02 +02:00
|
|
|
.closed {
|
|
|
|
|
font-size: x-large;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: red;
|
|
|
|
|
font-weight: 700;
|
2024-06-27 14:03:38 +02:00
|
|
|
padding: 100px 15px;
|
2024-06-08 21:22:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.offlineBoard {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: red;
|
2024-06-27 14:03:38 +02:00
|
|
|
padding: 30px 15px;
|
2024-06-08 21:22:17 +02:00
|
|
|
font-weight: 700;
|
2024-04-08 17:13:02 +02:00
|
|
|
}
|
|
|
|
|
|
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-08-03 22:41:40 +02:00
|
|
|
text-transform: lowercase;
|
2024-05-31 16:10:38 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-11 21:09:48 +02:00
|
|
|
.linkField input[type="text"] {
|
|
|
|
|
width: 190px !important;
|
2024-05-31 16:10:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spoilerButton input[type="checkbox"] {
|
|
|
|
|
margin: 0 3px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
transform: translateY(-2px);
|
2024-11-05 12:48:28 +01:00
|
|
|
cursor: pointer;
|
2024-05-31 16:10:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spoilerButton td {
|
|
|
|
|
padding-top: 2px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spoilerButton {
|
|
|
|
|
font-weight: normal;
|
2024-04-24 08:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
2024-11-05 12:48:28 +01:00
|
|
|
.spoilerButton label {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
2024-11-02 18:42:52 +01:00
|
|
|
|
2024-05-31 15:16:21 +02:00
|
|
|
.postFormTable td textarea {
|
|
|
|
|
height: 80px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postFormTable button {
|
2024-11-02 18:42:52 +01:00
|
|
|
padding: 3px 6px;
|
2024-05-31 15:16:21 +02:00
|
|
|
}
|
2025-12-06 15:46:34 +01:00
|
|
|
|
|
|
|
|
.postFormMobile {
|
2025-12-29 16:40:33 +01:00
|
|
|
margin-bottom: 8px;
|
2025-12-06 15:46:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postFormTable {
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
padding-bottom: 3px;
|
|
|
|
|
}
|
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-11-02 18:42:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.uploadButton button {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.uploadButton span {
|
|
|
|
|
font-weight: normal;
|
2025-01-31 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
color: red;
|
2024-03-20 13:00:11 +01:00
|
|
|
}
|