diff --git a/kitsune/sumo/static/css/cannedresponses.css b/kitsune/sumo/static/css/cannedresponses.css
index fa1acfb0f3f..926858cd3bc 100644
--- a/kitsune/sumo/static/css/cannedresponses.css
+++ b/kitsune/sumo/static/css/cannedresponses.css
@@ -1,5 +1,7 @@
-.markup-toolbar-button.btn-cannedresponses {
+.markup-toolbar-link.btn-cannedresponses {
background-image: url(../img/icon.magic-hat.png);
+ background-repeat: no-repeat;
+ padding: 6px 40px 6px !important;
}
#responses-area,
diff --git a/kitsune/sumo/static/js/markup.js b/kitsune/sumo/static/js/markup.js
index 93bd2747f35..e08b86bee8f 100644
--- a/kitsune/sumo/static/js/markup.js
+++ b/kitsune/sumo/static/js/markup.js
@@ -788,14 +788,14 @@ Marky.MediaButton.prototype = $.extend({}, Marky.SimpleButton.prototype, {
* The canned responses helper
*/
Marky.CannedResponsesButton = function() {
- this.name = gettext('Insert a canned response...');
+ this.name = gettext('Common responses');
this.classes = 'btn-cannedresponses';
this.openTag = '';
this.closeTag = '';
this.defaultText = gettext('cannedresponses');
this.everyline = false;
- this.html = '';
+ this.html = '';
};
Marky.CannedResponsesButton.prototype = $.extend({}, Marky.SimpleButton.prototype, {