update themes, limit post content length, fix undefined

This commit is contained in:
plebeius.eth
2024-03-28 17:21:27 +01:00
parent 2add4fe2bd
commit 4abd08df7b
7 changed files with 117 additions and 20 deletions
+34 -3
View File
@@ -74,12 +74,12 @@
color: var(--button-desktop-text-color-hover);
}
.postMenuBtn {
.postDesktop .postMenuBtn {
padding-left: 5px;
color: var(--post-menu-button-color);
}
.postMenuBtn:hover {
.postDesktop .postMenuBtn:hover {
cursor: pointer;
color: var(--post-menu-button-color-hover);
}
@@ -88,6 +88,21 @@
padding: 1em 40px;
}
.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);
}
.postMobile hr {
padding-bottom: 30px;
}
@@ -154,7 +169,7 @@
.postMobile .postMessage {
padding: 10px;
font-size: 11pt;
font-size: var(--post-mobile-content-font-size);
}
.postMobile .postLink {
@@ -172,6 +187,22 @@
color: var(--post-mobile-link-info-text-color);
}
.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);
}
@media (max-width: 640px) {
.postDesktop {
display: none;