feat(post): enable highlighting an already highlighted post by using a different color

This commit is contained in:
Tom (plebeius.eth)
2024-12-21 16:32:14 +01:00
parent 53638b023d
commit 5a498cbcb6
4 changed files with 43 additions and 3 deletions
+12 -1
View File
@@ -71,6 +71,10 @@ hr {
.highlight {
background: var(--reply-highlight-background-color) !important;
}
.double-highlight {
background: var(--reply-double-highlight-background-color) !important;
}
}
@media (min-width: 640px) {
@@ -92,4 +96,11 @@ hr {
border-left: var(--reply-highlight-border-left, revert) !important;
border-top: var(--reply-highlight-border-top, revert) !important;
}
}
.double-highlight {
background: var(--reply-double-highlight-background-color) !important;
border: var(--reply-double-highlight-border) !important;
border-left: var(--reply-double-highlight-border-left, revert) !important;
border-top: var(--reply-double-highlight-border-top, revert) !important;
}
}