diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-10-08 00:13:39 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-10-09 00:04:37 +0200 |
commit | 203f7a3a870964310060d82bdd61d14eb1613791 (patch) | |
tree | 1734be51604d4ad9525d94b56e48bea8b36d92ab | |
parent | 88aa40e6ace17b105aa9355e0e389377775ea3e4 (diff) | |
download | nextcloud-server-203f7a3a870964310060d82bdd61d14eb1613791.tar.gz nextcloud-server-203f7a3a870964310060d82bdd61d14eb1613791.zip |
Move contact delete button to top right corner
-rw-r--r-- | apps/contacts/css/styles.css | 1 | ||||
-rw-r--r-- | apps/contacts/templates/part.details.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/contacts/css/styles.css b/apps/contacts/css/styles.css index 1f95fdb2ad4..c1abd0efb62 100644 --- a/apps/contacts/css/styles.css +++ b/apps/contacts/css/styles.css @@ -1,2 +1,3 @@ .contacts_details_left {text-align:right;vertical-align:top;padding:2px;} .contacts_details_right {text-align:left;vertical-align:top;padding:2px;} +#contacts_deletecard {position:absolute;top:15px;right:0;} diff --git a/apps/contacts/templates/part.details.php b/apps/contacts/templates/part.details.php index 26a33739acb..438f84d45d4 100644 --- a/apps/contacts/templates/part.details.php +++ b/apps/contacts/templates/part.details.php @@ -28,7 +28,7 @@ <?php endforeach; ?> </table> <form> - <input type="button" id="contacts_deletecard" value="<?php echo $l->t('Delete');?>"> + <img class="svg action" id="contacts_deletecard" src="<?php echo image_path('', 'actions/delete.svg'); ?>" title="<?php echo $l->t('Delete contact');?>" /> <input type="button" id="contacts_addproperty" value="<?php echo $l->t('Add Property');?>"> </form> <?php endif; ?> |