Skip to content

Commit

Permalink
Fix wording and pixel alignment
Browse files Browse the repository at this point in the history
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
  • Loading branch information
jancborchardt committed Mar 27, 2018
1 parent 2554c20 commit a2a3066
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

.app-spreed #app-navigation {
padding-top: 46px;
padding-top: 45px;
padding-bottom: 0;
}

Expand Down
2 changes: 1 addition & 1 deletion js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
return '<span><div class="avatar" data-user="' + escapeHTML(element.id) + '" data-user-display-name="' + escapeHTML(element.displayName) + '"></div>' + escapeHTML(element.displayName) + '</span>';
},
formatSelection: function () {
return '<span class="select2-default" style="padding-left: 0;">'+OC.L10N.translate('spreed', 'Choose person…')+'</span>';
return '<span class="select2-default" style="padding-left: 0;">'+OC.L10N.translate('spreed', 'New call …')+'</span>';
}
});

Expand Down
2 changes: 1 addition & 1 deletion js/views/participantview.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
return '<span><div class="avatar" data-user="' + escapeHTML(element.id) + '" data-user-display-name="' + escapeHTML(element.displayName) + '"></div>' + escapeHTML(element.displayName) + '</span>';
},
formatSelection: function () {
return '<span class="select2-default" style="padding-left: 0;">'+OC.L10N.translate('spreed', 'Choose person…')+'</span>';
return '<span class="select2-default" style="padding-left: 0;">'+OC.L10N.translate('spreed', 'New call …')+'</span>';
}
});
this.ui.addParticipantInput.on('change', function(e) {
Expand Down

0 comments on commit a2a3066

Please sign in to comment.