]> Untitled Git - lemmy-ui.git/commitdiff
Make comment border colors semi-transparent
authorabias <abias1122@gmail.com>
Thu, 15 Jun 2023 00:52:31 +0000 (20:52 -0400)
committerabias <abias1122@gmail.com>
Thu, 15 Jun 2023 00:52:31 +0000 (20:52 -0400)
src/server/index.tsx
src/shared/components/comment/comment-node.tsx
src/shared/utils.ts

index 43024076ebb74db9d7624a89cf354555d355d3f0..06dc33a488b01d05cf735f3ce10066cb949a838d 100644 (file)
@@ -156,7 +156,7 @@ server.get("/*", async (req, res) => {
       site = try_site.data;
       initializeSite(site);
 
-      if (path != "/setup" && !site.site_view.local_site.site_setup) {
+      if (path !== "/setup" && !site.site_view.local_site.site_setup) {
         return res.redirect("/setup");
       }
 
index 51826462352b4d3f8bcec75e2e03f189851079c6..0380a72663935e8f119e309d1e5dc159723f3d7c 100644 (file)
@@ -270,10 +270,6 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
       this.props.moderators
     );
 
-
-    const borderColor = this.props.node.depth
-      ? colorList[(this.props.node.depth - 1) % colorList.length]
-      : colorList[0];
     const moreRepliesBorderColor = this.props.node.depth
       ? colorList[this.props.node.depth % colorList.length]
       : colorList[0];
@@ -951,9 +947,9 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
         </div>
         {showMoreChildren && (
           <div
-            className={`details ml-1 comment-node py-2 ${
-              !this.props.noBorder ? "border-top border-light" : ""
-            }`}
+            className={classNames("details ml-1 comment-node py-2", {
+              "border-top border-light": !this.props.noBorder,
+            })}
             style={`border-left: 2px ${moreRepliesBorderColor} solid !important`}
           >
             <button
@@ -1205,6 +1201,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
 
   linkBtn(small = false) {
     const cv = this.commentView;
+
     const classnames = classNames("btn btn-link btn-animate text-muted", {
       "btn-sm": small,
     });
index 46e8601be08e5ff4895d6b9335f24fe765cb7168..6b414bd1819f7fdf79966b6662f7c84dd069c845 100644 (file)
@@ -1127,7 +1127,7 @@ export const colorList: string[] = [
 ];
 
 function hsl(num: number) {
-  return `hsla(${num}, 35%, 50%, 1)`;
+  return `hsla(${num}, 35%, 50%, 0.5)`;
 }
 
 export function hostname(url: string): string {