Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

swap button colors to emphasize Comment more than `Resolve Conversa… #2115

Merged
merged 1 commit into from
May 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/views/reviews-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ export default class ReviewsView extends React.Component {
</div>}
<footer className="github-Review-footer">
<button
className="github-Review-replyButton btn"
className="github-Review-replyButton btn btn-primary"
title="Add your comment"
disabled={isPosting}
onClick={() => this.submitReply(replyHolder, thread, lastComment)}>
Expand All @@ -493,7 +493,7 @@ export default class ReviewsView extends React.Component {
if (thread.isResolved) {
return (
<button
className="github-Review-resolveButton btn btn-primary icon icon-check"
className="github-Review-resolveButton btn icon icon-check"
title="Unresolve conversation"
onClick={() => this.props.unresolveThread(thread)}>
Unresolve conversation
Expand All @@ -502,7 +502,7 @@ export default class ReviewsView extends React.Component {
} else {
return (
<button
className="github-Review-resolveButton btn btn-primary icon icon-check"
className="github-Review-resolveButton btn icon icon-check"
title="Resolve conversation"
onClick={() => this.props.resolveThread(thread)}>
Resolve conversation
Expand Down