2024-03-22 15:31:02 +01:00
|
|
|
.thread {
|
|
|
|
|
clear: both;
|
2024-03-22 16:15:38 +01:00
|
|
|
}
|
|
|
|
|
|
2024-03-28 12:41:40 +01:00
|
|
|
.hrWrapper hr {
|
2024-03-26 16:08:06 +01:00
|
|
|
margin: 0; /* margin bugs Virtuoso scrolling */
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-27 15:10:58 +01:00
|
|
|
.postDesktop .hrWrapper {
|
2024-03-28 12:41:40 +01:00
|
|
|
padding: 0.5em 0; /* instead of using margin, wrap with padding */
|
2024-03-26 16:08:06 +01:00
|
|
|
}
|
|
|
|
|
|
2024-04-06 18:37:50 +02:00
|
|
|
.hideButtonWrapper {
|
2024-05-30 14:29:02 +02:00
|
|
|
height: 15px;
|
|
|
|
|
width: 18px;
|
2024-03-29 13:54:11 +01:00
|
|
|
padding-right: 5px;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-06 18:37:50 +02:00
|
|
|
.postDesktop .hideButton {
|
2024-03-29 13:54:11 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
image-rendering: pixelated;
|
|
|
|
|
cursor: pointer;
|
2024-04-06 18:37:50 +02:00
|
|
|
transform: translateY(-1px);
|
2024-03-29 13:54:11 +01:00
|
|
|
}
|
|
|
|
|
|
2024-05-30 14:29:02 +02:00
|
|
|
.postDesktopBlocked {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-07 18:30:36 +02:00
|
|
|
/* clearfix to contain float elements */
|
2024-03-30 15:07:06 +01:00
|
|
|
.postDesktop::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: table;
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-29 13:54:11 +01:00
|
|
|
.postDesktop .hideThread {
|
|
|
|
|
background-image: var(--post-hide-button-background-image);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .unhideThread {
|
|
|
|
|
background-image: var(--post-unhide-button-background-image);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .fileText a {
|
2024-03-22 16:15:38 +01:00
|
|
|
color: var(--post-link-text-color);
|
|
|
|
|
text-decoration: var(--post-link-text-decoration);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-29 13:54:11 +01:00
|
|
|
.postDesktop .fileText a:hover {
|
2024-03-22 16:15:38 +01:00
|
|
|
color: var(--post-link-text-color-hover);
|
|
|
|
|
text-decoration: var(--post-link-text-decoration-hover);
|
2024-03-22 17:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .postInfo {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .subject {
|
|
|
|
|
color: var(--post-subject-text-color);
|
|
|
|
|
font-weight: var(--post-subject-font-weight);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-30 18:10:19 +01:00
|
|
|
.postDesktop .name, .replyDesktop .name {
|
2024-03-22 17:12:54 +01:00
|
|
|
color: var(--post-name-text-color);
|
|
|
|
|
font-weight: var(--post-name-font-weight);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-30 18:10:19 +01:00
|
|
|
.postDesktop .postNumLink a, .postDesktop .postNumLink span, .replyDesktop .postNumLink a, .replyDesktop .postNumLink span {
|
2024-03-26 16:08:06 +01:00
|
|
|
color: unset;
|
|
|
|
|
text-decoration: unset;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-30 18:10:19 +01:00
|
|
|
.postDesktop .postNumLink a:hover, .postDesktop .postNumLink span:hover, .replyDesktop .postNumLink a:hover, .replyDesktop .postNumLink span:hover {
|
2024-03-26 16:08:06 +01:00
|
|
|
color: var(--button-desktop-text-color-hover);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-30 18:10:19 +01:00
|
|
|
.postDesktop .stickyIconWrapper, .replyDesktop .stickyIconWrapper {
|
2024-03-26 16:08:06 +01:00
|
|
|
padding-left: 5px;
|
2024-04-13 16:35:52 +02:00
|
|
|
padding-right: 10px;
|
2024-03-26 16:08:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .closedIconWrapper {
|
2024-04-13 16:35:52 +02:00
|
|
|
padding-left: 5px;
|
|
|
|
|
padding-right: 10px;
|
2024-03-26 16:08:06 +01:00
|
|
|
}
|
|
|
|
|
|
2024-04-13 16:35:52 +02:00
|
|
|
.postDesktop .addPaddingInBetween {
|
|
|
|
|
padding-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stickyIconWrapper img, .closedIconWrapper img {
|
|
|
|
|
position: absolute;
|
2024-03-26 16:08:06 +01:00
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
image-rendering: pixelated;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-13 16:35:52 +02:00
|
|
|
.postDesktop .addPaddingBeforeReply {
|
|
|
|
|
padding-right: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-01 14:24:10 +02:00
|
|
|
.postDesktop .closeMedia {
|
|
|
|
|
color: var(--button-desktop-text-color);
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .closeMedia:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: var(--button-desktop-text-color-hover);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 16:08:06 +01:00
|
|
|
.postDesktop .replyButton {
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .replyButton a {
|
|
|
|
|
color: var(--button-desktop-text-color);
|
|
|
|
|
text-decoration: var(--button-desktop-text-decoration);
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .replyButton a:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: var(--button-desktop-text-color-hover);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-31 11:11:31 +02:00
|
|
|
.postDesktop .spacer {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-30 18:10:19 +01:00
|
|
|
.postDesktop .postMessage, .replyDesktop .postMessage {
|
2024-03-26 16:58:39 +01:00
|
|
|
padding: 1em 40px;
|
|
|
|
|
}
|
2024-03-26 18:08:50 +01:00
|
|
|
|
2024-03-28 17:21:27 +01:00
|
|
|
.postDesktop .abbr {
|
|
|
|
|
color: var(--post-mobile-abbr-text-color);
|
|
|
|
|
font-size: var(--post-mobile-abbr-font-size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .abbr a {
|
|
|
|
|
color: var(--post-link-text-color);
|
|
|
|
|
text-decoration: var(--post-content-link-text-decoration);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .abbr a:hover {
|
|
|
|
|
color: var(--post-link-text-color-hover);
|
|
|
|
|
text-decoration: var(--post-content-link-text-decoration-hover);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-02 12:23:18 +02:00
|
|
|
.postDesktop .summary {
|
|
|
|
|
padding-top: 10px;
|
2024-04-06 18:37:50 +02:00
|
|
|
padding-left: 23px;
|
|
|
|
|
position: relative;
|
2024-04-02 12:23:18 +02:00
|
|
|
color: var(--post-mobile-abbr-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-06 17:02:31 +02:00
|
|
|
.stateString {
|
|
|
|
|
color: var(--post-mobile-abbr-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-06 18:37:50 +02:00
|
|
|
.postDesktop .summary .expandButtonWrapper {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 8px;
|
|
|
|
|
left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-02 12:23:18 +02:00
|
|
|
.postDesktop .summary .expandButton {
|
|
|
|
|
background-image: var(--post-replies-expand-button-background-image);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
image-rendering: pixelated;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .summary a {
|
|
|
|
|
color: var(--post-link-text-color);
|
|
|
|
|
text-decoration: var(--post-content-link-text-decoration);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .summary a:hover {
|
|
|
|
|
color: var(--post-link-text-color-hover);
|
|
|
|
|
text-decoration: var(--post-content-link-text-decoration-hover);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-07 18:30:36 +02:00
|
|
|
/* clearfix to contain float elements */
|
|
|
|
|
.postMobile .postOp::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: table;
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-27 15:10:58 +01:00
|
|
|
.postMobile hr {
|
|
|
|
|
padding-bottom: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .thread {
|
|
|
|
|
border-top: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
clear: both;
|
2024-03-28 12:41:40 +01:00
|
|
|
padding-bottom: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-06 17:28:16 +02:00
|
|
|
.quotePreview {
|
|
|
|
|
padding: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-28 12:41:40 +01:00
|
|
|
.postMobile .postContainer {
|
|
|
|
|
background-color: var(--post-mobile-background-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .postOp {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .postInfo {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-bottom: var(--post-mobile-info-border-bottom);
|
2024-04-03 16:24:57 +02:00
|
|
|
border-top: var(--post-mobile-info-border-top);
|
2024-03-28 12:41:40 +01:00
|
|
|
background-color: var(--post-mobile-info-background-color);
|
2024-04-03 16:24:57 +02:00
|
|
|
color: var(--post-mobile-info-text-color);
|
2024-03-28 12:41:40 +01:00
|
|
|
padding: 5px;
|
|
|
|
|
clear: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .nameBlock {
|
|
|
|
|
clear: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .nameBlock .name {
|
|
|
|
|
color: var(--post-mobile-name-text-color);
|
|
|
|
|
font-weight: var(--post-mobile-name-font-weight);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-13 16:35:52 +02:00
|
|
|
.postMobile .stickyIconWrapper {
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .closedIconWrapper {
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .addPaddingInBetween {
|
|
|
|
|
padding: 0 13px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-28 12:41:40 +01:00
|
|
|
.postMobile .nameBlock .subject {
|
|
|
|
|
color: var(--post-mobile-subject-text-color);
|
|
|
|
|
font-weight: var(--post-mobile-subject-font-weight);
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .dateTimePostNum {
|
|
|
|
|
display: block;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-26 19:13:23 +02:00
|
|
|
.postMobile .postNumLink a {
|
|
|
|
|
color: unset;
|
|
|
|
|
text-decoration: unset;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-28 12:41:40 +01:00
|
|
|
.postMobile .postMessage {
|
|
|
|
|
padding: 10px;
|
2024-03-28 17:21:27 +01:00
|
|
|
font-size: var(--post-mobile-content-font-size);
|
2024-03-28 12:41:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .postLink {
|
|
|
|
|
clear: both;
|
|
|
|
|
background-color: var(--post-mobile-link-background-color);
|
|
|
|
|
border-top: var(--post-mobile-link-border-top);
|
2024-04-24 15:27:00 +02:00
|
|
|
border-bottom: var(--post-mobile-link-border-bottom);
|
2024-03-28 12:41:40 +01:00
|
|
|
padding: 5px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .postLink .info {
|
|
|
|
|
color: var(--post-mobile-link-info-text-color);
|
2024-03-27 15:10:58 +01:00
|
|
|
}
|
|
|
|
|
|
2024-03-28 17:21:27 +01:00
|
|
|
.postMobile .abbr {
|
|
|
|
|
color: var(--post-mobile-abbr-text-color);
|
|
|
|
|
font-size: var(--post-mobile-abbr-font-size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .abbr a {
|
|
|
|
|
color: var(--post-link-text-color);
|
|
|
|
|
text-decoration: var(--post-content-link-text-decoration);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postMobile .abbr a:hover {
|
|
|
|
|
color: var(--post-link-text-color-hover);
|
|
|
|
|
text-decoration: var(--post-content-link-text-decoration-hover);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-30 18:10:19 +01:00
|
|
|
.replyDesktop {
|
2024-05-30 14:29:02 +02:00
|
|
|
padding-top: 4px;
|
2024-03-30 18:10:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replyDesktop .sideArrows {
|
|
|
|
|
color: var(--side-arrows-color);
|
|
|
|
|
float: left;
|
|
|
|
|
padding: 0 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replyDesktop .reply {
|
2024-03-30 22:19:49 +01:00
|
|
|
background-color: var(--reply-desktop-background-color);
|
|
|
|
|
border: var(--reply-desktop-border);
|
2024-03-30 18:10:19 +01:00
|
|
|
border-left: none;
|
|
|
|
|
border-top: none;
|
|
|
|
|
display: table;
|
2024-05-31 10:22:27 +02:00
|
|
|
padding: 0 2px 2px 2px;
|
2024-03-30 18:10:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replyDesktop .postInfo {
|
|
|
|
|
padding: 3px 3px 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-03 16:24:57 +02:00
|
|
|
.quoteLink {
|
|
|
|
|
color: var(--post-quotelink-text-color);
|
|
|
|
|
text-decoration: var(--post-quotelink-text-decoration);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.quoteLink:hover {
|
|
|
|
|
color: var(--post-quotelink-text-color-hover);
|
|
|
|
|
text-decoration: var(--post-quotelink-text-decoration-hover);
|
2024-06-06 17:28:16 +02:00
|
|
|
cursor: pointer;
|
2024-04-03 16:24:57 +02:00
|
|
|
}
|
|
|
|
|
|
2024-03-30 22:19:49 +01:00
|
|
|
.replyMobile {
|
|
|
|
|
padding-top: 7px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-01 17:39:10 +02:00
|
|
|
.replyMobile .replyContainer {
|
2024-03-30 22:19:49 +01:00
|
|
|
background-color: var(--post-mobile-background-color);
|
2024-04-03 16:24:57 +02:00
|
|
|
border-bottom: var(--post-mobile-border-bottom);
|
2024-03-30 22:19:49 +01:00
|
|
|
}
|
|
|
|
|
|
2024-04-07 18:30:36 +02:00
|
|
|
/* clearfix to contain float elements */
|
2024-04-02 12:59:33 +02:00
|
|
|
.replyMobile .replyContainer::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: table;
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-30 22:19:49 +01:00
|
|
|
.replyMobile .postInfo {
|
|
|
|
|
padding: 5px;
|
2024-04-03 16:24:57 +02:00
|
|
|
border-top: var(--post-mobile-info-border-top);
|
2024-03-30 22:19:49 +01:00
|
|
|
border-bottom: var(--post-mobile-info-border-bottom);
|
|
|
|
|
background-color: var(--post-mobile-info-background-color);
|
2024-04-03 16:24:57 +02:00
|
|
|
color: var(--post-mobile-info-text-color);
|
2024-03-30 22:19:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replyMobile .nameBlock {
|
|
|
|
|
display: inline;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replyMobile .dateTimePostNum {
|
|
|
|
|
float: right;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-08 12:33:59 +02:00
|
|
|
.capcodeMod {
|
|
|
|
|
color: var(--post-capcode-mod-text-color) !important;
|
2024-04-08 16:03:32 +02:00
|
|
|
text-transform: capitalize;
|
2024-04-08 12:33:59 +02:00
|
|
|
}
|
|
|
|
|
|
2024-04-26 19:13:23 +02:00
|
|
|
.pendingCid {
|
|
|
|
|
color: red !important;
|
|
|
|
|
font-weight: 700 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-29 13:34:46 +02:00
|
|
|
.replyToPost {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-06 20:44:53 +02:00
|
|
|
.removedContent, .deletedContent {
|
2024-05-31 10:14:44 +02:00
|
|
|
font-weight: 700;
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-06 20:44:53 +02:00
|
|
|
.removedContent {
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-06 17:28:16 +02:00
|
|
|
.backlink, .backlinkHash {
|
2024-06-04 17:48:53 +02:00
|
|
|
font-size: 0.8em;
|
2024-06-06 17:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.backlink {
|
2024-06-04 17:48:53 +02:00
|
|
|
padding-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-06 17:28:16 +02:00
|
|
|
.backlink, .backlinkHash {
|
2024-06-04 17:48:53 +02:00
|
|
|
color: var(--post-backlink-text-color);
|
|
|
|
|
text-decoration: var(--post-backlink-text-decoration);
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-06 17:28:16 +02:00
|
|
|
.backlink:hover, .backlinkHash:hover {
|
2024-06-04 17:48:53 +02:00
|
|
|
color: var(--post-backlink-text-color-hover);
|
|
|
|
|
text-decoration: var(--post-backlink-text-decoration-hover);
|
2024-06-06 17:28:16 +02:00
|
|
|
cursor: pointer;
|
2024-06-04 17:48:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobileReplyBacklinks {
|
|
|
|
|
padding: 0 0;
|
|
|
|
|
padding-bottom: 3px;
|
|
|
|
|
line-height: 2;
|
|
|
|
|
background-color: var(--reply-backlink-mobile-background-color);
|
|
|
|
|
border-top: var(--reply-backlink-mobile-border-top);
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-04 21:35:22 +02:00
|
|
|
.highlight {
|
|
|
|
|
background: var(--reply-highlight-background-color) !important;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-05 22:18:45 +02:00
|
|
|
.replyQuotePreview {
|
|
|
|
|
background: var(--quote-preview-background);
|
|
|
|
|
border: var(--quote-preview-border);
|
|
|
|
|
border-right: var(--quote-preview-border-right);
|
|
|
|
|
border-bottom: var(--quote-preview-border-bottom);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.postDesktop .replyQuotePreviewSpacer {
|
|
|
|
|
padding: 1.5px 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-22 17:12:54 +01:00
|
|
|
@media (max-width: 640px) {
|
2024-06-06 17:28:16 +02:00
|
|
|
.replyQuotePreview {
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-22 17:12:54 +01:00
|
|
|
.postDesktop {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-03-30 18:10:19 +01:00
|
|
|
|
|
|
|
|
.replyDesktop {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-03-27 15:10:58 +01:00
|
|
|
}
|
|
|
|
|
|
2024-04-10 13:16:07 +02:00
|
|
|
@media (min-width: 640px) {
|
2024-06-06 17:28:16 +02:00
|
|
|
.replyQuotePreview {
|
|
|
|
|
padding-right: 7px;
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-27 15:10:58 +01:00
|
|
|
.postMobile {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-03-30 18:10:19 +01:00
|
|
|
|
|
|
|
|
.replyMobile {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-03-26 18:08:50 +01:00
|
|
|
}
|