From 6e09d5f836f3f9578416dc54b232053ff5d80d2d Mon Sep 17 00:00:00 2001
From: Lim Chee Aun <cheeaun@gmail.com>
Date: Sun, 18 Dec 2022 01:14:44 +0800
Subject: [PATCH] Fix .insignificant class affecting other elements

Remove them because they were used in previous discarded design
---
 src/app.css          | 10 ----------
 src/pages/status.jsx |  8 +++-----
 2 files changed, 3 insertions(+), 15 deletions(-)

diff --git a/src/app.css b/src/app.css
index 3178b5e4..fac7fcfb 100644
--- a/src/app.css
+++ b/src/app.css
@@ -121,16 +121,6 @@ a.mention span {
 .timeline.flat > li {
   border-bottom: none;
 }
-/* .timeline li.insignificant {
-  filter: opacity(0.5);
-  background-color: var(--bg-faded-color);
-}
-.timeline li.insignificant > * {
-  opacity: 0.75;
-}
-.timeline li.insignificant:hover > * {
-  opacity: 1;
-} */
 
 .timeline.contextual > li {
   --width: 3px;
diff --git a/src/pages/status.jsx b/src/pages/status.jsx
index 8b27f7b6..e2f3a9ba 100644
--- a/src/pages/status.jsx
+++ b/src/pages/status.jsx
@@ -166,11 +166,9 @@ function StatusPage({ id }) {
               <li
                 key={statusID}
                 ref={isHero ? heroStatusRef : null}
-                class={`${isHero ? '' : 'insignificant'} ${
-                  ancestor ? 'ancestor' : ''
-                } ${descendant ? 'descendant' : ''} ${
-                  descendant && !directReply ? 'indirect' : ''
-                }`}
+                class={`${ancestor ? 'ancestor' : ''} ${
+                  descendant ? 'descendant' : ''
+                } ${descendant && !directReply ? 'indirect' : ''}`}
               >
                 {isHero ? (
                   <Status statusID={statusID} withinContext size="l" />