summaryrefslogtreecommitdiffstats
path: root/apps/contacts/css
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-01-11 03:56:53 +0100
committerThomas Tanghus <thomas@tanghus.net>2012-01-11 04:05:30 +0100
commit1a6ad816a32eb9d4813b66457f8bcdc9c46e2141 (patch)
tree1aaae79b6e28021937364b8b02db904f041f0362 /apps/contacts/css
parent5500041ccab0fb7664a06ffa40fe3532d11bacb4 (diff)
downloadnextcloud-server-1a6ad816a32eb9d4813b66457f8bcdc9c46e2141.tar.gz
nextcloud-server-1a6ad816a32eb9d4813b66457f8bcdc9c46e2141.zip
CSS cleanup, more error checking, better error messages, general cleanup.
Diffstat (limited to 'apps/contacts/css')
-rw-r--r--apps/contacts/css/styles.css39
1 files changed, 38 insertions, 1 deletions
diff --git a/apps/contacts/css/styles.css b/apps/contacts/css/styles.css
index 7b56767bab0..dfc296a221b 100644
--- a/apps/contacts/css/styles.css
+++ b/apps/contacts/css/styles.css
@@ -8,9 +8,46 @@
#contacts_details_list { list-style:none; }
#contacts_details_list li { overflow:visible; }
#contacts_details_list li p.contacts_property_name { width:25%; float:left;text-align:right;padding-right:0.3em;color:#666; }
-#contacts_details_list li p.contacts_property_data, #contacts_details_list li ul.contacts_property_data { width:72%;float:left; }
+#contacts_details_list li p.contacts_property_data, #contacts_details_list li ul.contacts_property_data { width:72%;float:left; clear: right; }
#contacts_setproperty_button { margin-left:25%; }
+dl.form
+{
+ width: 100%;
+ float: left;
+ clear: right;
+ margin: 1em;
+ padding: 0;
+}
+
+.form dt
+{
+ display: table-cell;
+ clear: left;
+ float: left;
+ min-width: 10em;
+ margin: 0;
+ padding-top: 0.5em;
+ padding-right: 1em;
+ font-weight: bold;
+ text-align:right;
+ vertical-align: text-bottom;
+ bottom: 0px;
+}
+
+.form dd
+{
+ display: table-cell;
+ clear: right;
+ float: left;
+ min-width: 20em;
+ margin: 0;
+ padding: 0;
+ white-space: nowrap;
+ top: 0px;
+}
+.form input { position: relative; width: 20em; }
+
.contacts_property_data ul, ol.contacts_property_data { list-style:none; }
.contacts_property_data li { overflow: hidden; }
.contacts_property_data li label { width:20%; float:left; text-align:right;padding-right:0.3em; }