summaryrefslogtreecommitdiffstats
path: root/ui/src/components/comment-node.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-03-04 14:18:13 -0500
committerDessalines <tyhou13@gmx.com>2020-03-04 14:18:13 -0500
commit43f783db42b3b48cacd330ac0b3abb561cef7c54 (patch)
treeaa2e9b441443c1a8bb00699157be74efe8284fc0 /ui/src/components/comment-node.tsx
parentf601d6cd03a879c1f6e490cb4ecf954cb1d04d22 (diff)
Removing comment node other score colors for clarity.
Diffstat (limited to 'ui/src/components/comment-node.tsx')
-rw-r--r--ui/src/components/comment-node.tsx22
1 files changed, 9 insertions, 13 deletions
diff --git a/ui/src/components/comment-node.tsx b/ui/src/components/comment-node.tsx
index 9759a13a..fba96db9 100644
--- a/ui/src/components/comment-node.tsx
+++ b/ui/src/components/comment-node.tsx
@@ -182,27 +182,23 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
>
<li className="list-inline-item">
<span className={this.scoreColor}>
- <svg class="small icon icon-inline mr-1">
+ <svg className="small icon icon-inline mr-1">
<use xlinkHref="#icon-zap"></use>
</svg>
{this.state.score}
</span>
</li>
<li className="list-inline-item">
- <span className="text-info">
- <svg class="small icon icon-inline mr-1">
- <use xlinkHref="#icon-arrow-up"></use>
- </svg>
- {this.state.upvotes}
- </span>
+ <svg class="small icon icon-inline mr-1">
+ <use xlinkHref="#icon-arrow-up"></use>
+ </svg>
+ {this.state.upvotes}
</li>
<li className="list-inline-item">
- <span className="text-danger">
- <svg class="small icon icon-inline mr-1">
- <use xlinkHref="#icon-arrow-down"></use>
- </svg>
- {this.state.downvotes}
- </span>
+ <svg class="small icon icon-inline mr-1">
+ <use xlinkHref="#icon-arrow-down"></use>
+ </svg>
+ {this.state.downvotes}
</li>
</span>
{this.props.showCommunity && (