Added report table class.
authorIain Patterson <me@iain.cx>
Mon, 5 Aug 2013 17:51:35 +0000 (18:51 +0100)
committerIain Patterson <me@iain.cx>
Wed, 11 Sep 2013 14:54:27 +0000 (10:54 -0400)
Report tables have extra padding for legibility.

lib/report.php
www/style.css

index 2fabab4..b268440 100644 (file)
@@ -79,7 +79,7 @@
     $week = 1;
     $last_week = 0;
     $total = 0;
-    echo "<table>\n";
+    echo "<table class=\"report\">\n";
     foreach ($rows as $row) {
       /* Convert week of year to date range. */
       if (! $week_offset) $week_offset = $row->getWeek() - 1;
     $q->groupByRequesterId()->addDescendingOrderByColumn('count');
     $rows = $q->find();
     $total = 0;
-    echo "<table>\n";
+    echo "<table class=\"report\">\n";
     /* XXX Join! */
     foreach ($rows as $row) {
       echo "<tr>\n";
index 627f878..84af4f4 100644 (file)
@@ -93,3 +93,7 @@ a.delete {
 .smaller {
   font-size: 25%;
 }
+
+table.report > * > tr > td {
+  padding-right: 0.25em;
+}