diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-07-22 20:43:04 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-07-22 20:43:04 +0200 |
commit | 56edd9584cb964f75ccaeae4db9d0040b71ffe5f (patch) | |
tree | 7e333b514df3db8af9bbe65d4aee9d7f8ba70b78 /public | |
parent | c677e79c1227eedb656ad1a6830c38c64a4c0e4b (diff) | |
download | collection-json-explorer-56edd9584cb964f75ccaeae4db9d0040b71ffe5f.tar.gz collection-json-explorer-56edd9584cb964f75ccaeae4db9d0040b71ffe5f.tar.bz2 collection-json-explorer-56edd9584cb964f75ccaeae4db9d0040b71ffe5f.tar.xz collection-json-explorer-56edd9584cb964f75ccaeae4db9d0040b71ffe5f.zip |
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.
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/style.css | 23 |
1 files changed, 23 insertions, 0 deletions
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; +} |