summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-04-24 00:43:08 +0200
committerThomas Tanghus <thomas@tanghus.net>2012-04-24 01:44:07 +0200
commitb8da5c526219fae28434ede6cd53e0010d83c8ee (patch)
treece4d21e8deec1f214bb7f1e7ece38183a6d11219
parent6848b069c9f33a164c8a5ab180a9a7f40802527b (diff)
downloadnextcloud-server-b8da5c526219fae28434ede6cd53e0010d83c8ee.tar.gz
nextcloud-server-b8da5c526219fae28434ede6cd53e0010d83c8ee.zip
Contacts: Tried to format NOTE field a bit. Needs to be improved more though.
-rw-r--r--apps/contacts/css/contacts.css1
-rw-r--r--apps/contacts/templates/part.contact.php2
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/contacts/css/contacts.css b/apps/contacts/css/contacts.css
index 04700aa456a..7338eed4a7f 100644
--- a/apps/contacts/css/contacts.css
+++ b/apps/contacts/css/contacts.css
@@ -60,6 +60,7 @@ dl.form { width: 100%; float: left; clear: right; margin: 0; padding: 0; }
#identityprops { /*position: absolute; top: 2.5em; left: 0px;*/ }
/*#contact_photo { max-width: 250px; }*/
#contact_identity { min-width: 30em; }
+#note { min-width: 200px; }
.contactsection { position: relative; float: left; /*max-width: 40em;*/ padding: 0.5em; height: auto: border: thin solid lightgray;/* -webkit-border-radius: 0.5em; -moz-border-radius: 0.5em; border-radius: 0.5em; background-color: #f8f8f8;*/ }
.contactpart legend { width:auto; padding:.3em; border:1px solid #ddd; font-weight:bold; cursor:pointer; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; }
diff --git a/apps/contacts/templates/part.contact.php b/apps/contacts/templates/part.contact.php
index b90fa92c2c5..dec081a9b89 100644
--- a/apps/contacts/templates/part.contact.php
+++ b/apps/contacts/templates/part.contact.php
@@ -112,7 +112,7 @@ $id = isset($_['id']) ? $_['id'] : '';
<div id="contact_note" class="contactsection">
<form class="float" method="post">
<fieldset id="note" class="formfloat propertycontainer contactpart" data-element="NOTE">
- <textarea class="contacts_property note" name="value" cols="40" rows="10" required="required" placeholder="<?php echo $l->t('Add notes here.'); ?>"></textarea>
+ <textarea class="contacts_property note" name="value" cols="60" rows="15" required="required" placeholder="<?php echo $l->t('Add notes here.'); ?>"></textarea>
</fieldset>
</form>
</div> <!-- contact_note -->