Skip to content

Commit

Permalink
Merge pull request #511 from owncloud/bigger-add-button
Browse files Browse the repository at this point in the history
Bigger add symbol and button translation fix #510
  • Loading branch information
irgendwie committed Sep 3, 2016
2 parents 022a0e8 + 8d05ceb commit bb6325a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions css/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,8 @@ li.addressBook-share-item span.shareeIdentifier {
margin: 14px auto; /* to have the same height than a contact*/
width: calc(100% - 20px) !important;
text-align: left;
padding-left: 34px;
background-position: 10px center;
}


Expand Down
1 change: 0 additions & 1 deletion js/components/contactList/contactList_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ angular.module('contactsApp')
ctrl.invalid = false;

ctrl.t = {
addContact : t('contacts', '+ New contact'),
emptySearch : t('contacts', 'No search result for {query}', {query: ctrl.searchTerm})
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ angular.module('contactsApp')
var ctrl = this;

ctrl.t = {
addContact : t('contacts', '+ New contact')
addContact : t('contacts', 'New contact')
};

ctrl.createContact = function() {
Expand Down
2 changes: 1 addition & 1 deletion templates/newContactButton.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<button ng-show="!ctrl.loading && !ctrl.invalid" class="app-content-list-button" id="new-contact-button"
<button ng-show="!ctrl.loading && !ctrl.invalid" class="icon-add app-content-list-button" id="new-contact-button"
type="button" name="button" ng-click="ctrl.createContact()">{{ctrl.t.addContact}}</button>

0 comments on commit bb6325a

Please sign in to comment.