From 02c6f0f6316497511da4cc50642db7e2aba96d4a Mon Sep 17 00:00:00 2001
From: Jeff Atwood <jatwood@codinghorror.com>
Date: Thu, 4 Apr 2013 02:09:27 -0700
Subject: [PATCH] make ban the actual icon-circle-ban, and danger

---
 app/assets/javascripts/admin/templates/user.js.handlebars | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app/assets/javascripts/admin/templates/user.js.handlebars b/app/assets/javascripts/admin/templates/user.js.handlebars
index 937656c2b..504aaac03 100644
--- a/app/assets/javascripts/admin/templates/user.js.handlebars
+++ b/app/assets/javascripts/admin/templates/user.js.handlebars
@@ -109,15 +109,15 @@
     <div class='value'>{{content.isBanned}}</div>
     <div class='controls'>
     {{#if content.isBanned}}
-      <button class='btn' {{action unban target="content"}}>
-        <i class='icon icon-screenshot'></i>
+      <button class='btn btn-danger' {{action unban target="content"}}>
+        <i class='icon icon-ban-circle'></i>
         {{i18n admin.user.unban}}
       </button>
       {{content.banDuration}}
     {{else}}
       {{#if content.canBan}}
-        <button class='btn' {{action ban target="content"}}>
-          <i class='icon icon-screenshot'></i>
+        <button class='btn btn-danger' {{action ban target="content"}}>
+          <i class='icon icon-ban-circle'></i>
           {{i18n admin.user.ban}}
         </button>
       {{/if}}