From fa3a0e23cc34de92f2dbebbe308d53132373fddd Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sun, 28 Jul 2024 16:08:18 +0800 Subject: [PATCH] Unhide some text for posts inside Edit History Every char matters when looking at post edit history --- src/components/status.css | 45 ++++++++++++++++++++++++++------------- 1 file changed, 30 insertions(+), 15 deletions(-) diff --git a/src/components/status.css b/src/components/status.css index 82630d0b..ee529559 100644 --- a/src/components/status.css +++ b/src/components/status.css @@ -2472,24 +2472,39 @@ a.card:is(:hover, :focus):visited { #edit-history { min-height: 50vh; min-height: 50dvh; -} -#edit-history h2 { - margin: 0; - padding: 0; -} + h2 { + margin: 0; + padding: 0; + } -#edit-history ol, -#edit-history ol li { - list-style: none; - margin: 0; - padding: 0; -} + ol, + ol li { + list-style: none; + margin: 0; + padding: 0; + } -#edit-history .history-item .status { - border: 1px solid var(--outline-color); - border-radius: 8px; - pointer-events: none; + .history-item .status { + border: 1px solid var(--outline-color); + border-radius: 8px; + pointer-events: none; + } + + .status { + .invisible { + display: revert; + } + + .hashtag-stuffing { + white-space: normal; + opacity: 1; + } + + a { + color: var(--text-color); + } + } } /* EMBED */