Skip to content

Commit

Permalink
color
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Jun 12, 2018
1 parent 1d5af4a commit 13720b3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions app/assets/v2/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,10 @@ input[type=text].loading {
text-align: left;
}

.admin-only{
background-color: #800000 !important;
}

/* The alert message box */

.alert {
Expand Down
2 changes: 1 addition & 1 deletion app/assets/v2/js/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ var uninterested = function(bounty_pk, profileId, slash) {
var success_message = 'Contributor removed from bounty.';

if (slash) {
success_message = 'Contributor removed from bounty and slashed';
success_message = 'Contributor removed from bounty and rep dinged';
data.slashed = true;
}

Expand Down
6 changes: 3 additions & 3 deletions app/dashboard/templates/bounty_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,9 @@ <h5 class="bounty-heading">{% trans "Funder" %}</h5>
</div>
[[if slash_possible]]
<div class="stop-work">
<span title="<div class='tooltip-info tooltip-sm'>Remove this user's started work on the bounty and slash</div>">
<a id="remove-slash-[[:name]]" class="button button--primary" role="button" href="remove-handle">
<span class="font-smaller-4">Stop work + Slash</span>
<span title="<div class='tooltip-info tooltip-sm'>Remove this user's started work on the bounty and ding rep</div>">
<a id="remove-slash-[[:name]]" class="button button--primary admin-only" role="button" href="remove-handle">
<span class="font-smaller-4">Stop work + Ding Rep</span>
</a>
</span>
</div>
Expand Down

0 comments on commit 13720b3

Please sign in to comment.