2024-04-28 20:08:41 +02:00
|
|
|
.container {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: calc(50% - 150px);
|
|
|
|
|
left: calc(50% - 150px);
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
font-size: 10pt;
|
|
|
|
|
border-left: none;
|
|
|
|
|
border-top: none;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
background-color: var(--challenge-modal-background-color);
|
|
|
|
|
border: var(--challenge-modal-border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
font-size: var(--challenge-modal-title-font-size);
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: 18px;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
cursor: move;
|
|
|
|
|
font-weight: var(--challenge-modal-title-font-weight);
|
|
|
|
|
background-color: var(--challenge-modal-title-background-color);
|
|
|
|
|
color: var(--challenge-modal-title-text-color);
|
|
|
|
|
border: var(--challenge-modal-title-border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.closeIcon {
|
|
|
|
|
all: unset;
|
|
|
|
|
float: right;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-bottom: -4px;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
border: none;
|
|
|
|
|
image-rendering: pixelated;
|
|
|
|
|
background-image: var(--close-button-background-image);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-29 14:26:02 +02:00
|
|
|
.container input[type="text"], .container textarea {
|
2024-05-08 16:05:05 +02:00
|
|
|
border: var(--reply-modal-field-input-border, revert);
|
2024-04-29 14:26:02 +02:00
|
|
|
font-family: var(--post-form-field-font-family, revert);
|
2024-05-08 12:23:18 +02:00
|
|
|
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);
|
2024-04-28 20:08:41 +02:00
|
|
|
font-size: 10pt;
|
2024-04-29 14:26:02 +02:00
|
|
|
outline: var(--post-form-field-input-outline, revert);
|
2024-04-28 20:08:41 +02:00
|
|
|
width: 298px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-29 14:26:02 +02:00
|
|
|
.container input[type="text"]:focus, .container textarea:focus {
|
2024-05-08 16:05:05 +02:00
|
|
|
border: var(--reply-modal-field-input-border-focus, revert);
|
2024-04-29 14:26:02 +02:00
|
|
|
}
|
|
|
|
|
|
2024-05-09 22:25:06 +02:00
|
|
|
.content {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-28 20:08:41 +02:00
|
|
|
.content textarea {
|
|
|
|
|
vertical-align: top;
|
2024-05-09 22:25:06 +02:00
|
|
|
padding-top: 2em;
|
2024-04-28 20:08:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer button {
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
float: right;
|
|
|
|
|
cursor: pointer;
|
2024-04-29 13:28:04 +02:00
|
|
|
}
|
|
|
|
|
|
2024-05-09 22:25:06 +02:00
|
|
|
.parentCid {
|
|
|
|
|
color: var(--post-form-field-input-color);
|
|
|
|
|
position: absolute;
|
2024-05-14 22:43:21 +02:00
|
|
|
width: auto;
|
|
|
|
|
background-color: var(--post-form-field-input-background-color, white);
|
|
|
|
|
padding: 2px;
|
|
|
|
|
left: 1px;
|
|
|
|
|
top: 1px;
|
2024-05-08 12:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
2024-04-29 13:28:04 +02:00
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
.container {
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
2024-04-28 20:08:41 +02:00
|
|
|
}
|