Use the solid envelope icon. Font-awesome swapped icon-envelope and icon-envelope-alt.

This commit is contained in:
Neil Lalonde 2013-07-10 17:05:55 -04:00
parent 6de1fed87a
commit 7792b7da48
6 changed files with 6 additions and 6 deletions

View File

@ -163,7 +163,7 @@
<table class="table table-condensed table-hover">
<thead>
<tr>
<th class="title" title="{{i18n admin.dashboard.private_messages_title}}"><i class="icon icon-envelope-alt"></i> {{i18n admin.dashboard.private_messages_short}}</th>
<th class="title" title="{{i18n admin.dashboard.private_messages_title}}"><i class="icon icon-envelope"></i> {{i18n admin.dashboard.private_messages_short}}</th>
<th>{{i18n admin.dashboard.reports.today}}</th>
<th>{{i18n admin.dashboard.reports.yesterday}}</th>
<th>{{i18n admin.dashboard.reports.last_7_days}}</th>

View File

@ -109,7 +109,7 @@
{{else}}
{{#if can_send_activation_email}}
<button class='btn' {{action sendActivationEmail target="content"}}>
<i class='icon icon-envelope-alt'></i>
<i class='icon icon-envelope'></i>
{{i18n admin.user.send_activation_email}}
</button>
{{/if}}

View File

@ -64,7 +64,7 @@ Discourse.ShareLink.reopenClass({
twitter: 'icon-twitter',
facebook: 'icon-facebook-sign',
'google+': 'icon-google-plus',
email: 'icon-envelope-alt'
email: 'icon-envelope'
},
popupHeights: {

View File

@ -18,7 +18,7 @@ Discourse.UserAction = Discourse.Model.extend({
if (action === null || actions.indexOf(action) >= 0) {
if (this.get('isPM')) {
icon = '<i class="icon icon-envelope-alt" title="{{i18n user.stream.private_message}}"></i>';
icon = '<i class="icon icon-envelope" title="{{i18n user.stream.private_message}}"></i>';
if (sameUser) {
sentence = I18n.t('user_action.sent_by_you', { userUrl: this.get('userUrl') });
} else {

View File

@ -1,4 +1,4 @@
<h3><i class='icon icon-envelope-alt'></i> {{i18n private_message_info.title}}</h3>
<h3><i class='icon icon-envelope'></i> {{i18n private_message_info.title}}</h3>
<div class='participants clearfix'>
{{#each details.allowed_groups}}
<div class='user group'>

View File

@ -7,7 +7,7 @@
<br/>
{{#if can_send_private_message_to_user}}
<button class='btn create' {{action composePrivateMessage}}>
<i class='icon icon-envelope-alt'></i>
<i class='icon icon-envelope'></i>
{{i18n user.private_message}}
</button>
{{/if}}