right-sidebar: Update feedback button styling.

This updates the styling of the feedback button to utilize the new
button component class `.button` rather than the old bootstrap
`.btn` class.
This commit is contained in:
Brock Whittaker 2017-09-26 16:36:37 -07:00 committed by Tim Abbott
parent fabf0f53c4
commit 3aea2c4db0
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
<div class="right-sidebar" id="right-sidebar">
<div class="sidebar-items">
{% if enable_feedback %}
<div id="feedback_section">
<button type="button" class="btn btn-default btn-large" id="feedback_button">
<div id="feedback_section" class="new-style">
<button type="button" class="button small rounded" id="feedback_button">
<i class="icon-vector-comment"></i>&nbsp;&nbsp;{{ _('Send feedback') }}
</button>
</div>