From 56edd9584cb964f75ccaeae4db9d0040b71ffe5f Mon Sep 17 00:00:00 2001
From: Trygve Laugstøl <trygvis@inamo.no>
Date: Sun, 22 Jul 2012 20:43:04 +0200
Subject: o Better layout of the data table.   Using a <table> instead of <dl>
 as the dl headings was collapsed by   at least Chrome. o Adding mail logging.

---
 public/stylesheets/style.css | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

(limited to 'public')

diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css
index 9096f12..09dd30c 100644
--- a/public/stylesheets/style.css
+++ b/public/stylesheets/style.css
@@ -23,6 +23,9 @@
   }
 }
 
+/**
+ * Forms
+ */
 table.cj-form th {
   text-align: right;
   min-width: 300px;
@@ -37,3 +40,23 @@ table.cj-form tbody td,
 table.cj-form tbody input {
   width: 100%;
 }
+
+/**
+ * Item's data table
+ */
+table.data-table {
+  margin-top: 1em;
+  margin-bottom: 1em;
+}
+
+table.data-table th {
+  text-align: right;
+  padding-right: 1em;
+  font-weight: bold;
+  min-width: 120px;
+}
+
+table.data-table th,
+table.data-table td {
+  vertical-align: top;
+}
-- 
cgit v1.2.3