From 869d7a45527e99e35f29581741d08ffe243a5a97 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sun, 5 May 2019 15:47:35 -0700 Subject: [PATCH] Softer white background. --- ui/src/components/comment-node.tsx | 8 ++++---- ui/src/components/post-listing.tsx | 8 ++++---- ui/src/css/main.css | 3 +++ 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/ui/src/components/comment-node.tsx b/ui/src/components/comment-node.tsx index 92eda3add..76e8e64e8 100644 --- a/ui/src/components/comment-node.tsx +++ b/ui/src/components/comment-node.tsx @@ -57,11 +57,11 @@ export class CommentNode extends Component { let node = this.props.node; return (
-
+
-
{node.comment.score}
+
{node.comment.score}
@@ -72,10 +72,10 @@ export class CommentNode extends Component { {node.comment.creator_name} {this.isMod && -
  • mod
  • +
  • mod
  • } {this.isAdmin && -
  • admin
  • +
  • admin
  • }
  • ( diff --git a/ui/src/components/post-listing.tsx b/ui/src/components/post-listing.tsx index 0245d65ae..0fec5ceb3 100644 --- a/ui/src/components/post-listing.tsx +++ b/ui/src/components/post-listing.tsx @@ -57,11 +57,11 @@ export class PostListing extends Component { let post = this.props.post; return (
    -
    +
    -
    {post.score}
    +
    {post.score}
    @@ -113,10 +113,10 @@ export class PostListing extends Component { by {post.creator_name} {this.isMod && - mod + mod } {this.isAdmin && - admin + admin } {this.props.showCommunity && diff --git a/ui/src/css/main.css b/ui/src/css/main.css index d5ba863a5..c3ff3bdab 100644 --- a/ui/src/css/main.css +++ b/ui/src/css/main.css @@ -1,3 +1,6 @@ +body, .text-white, .navbar-brand, .badge-light, .btn-secondary { + color: #dedede !important; +} .pointer { cursor: pointer;