[tor-commits] [doctor/master] Make all tables more readable.

karsten at torproject.org karsten at torproject.org
Mon Jul 15 15:00:55 UTC 2013


commit ac797f38ae3a0ff52c0e99a910e358f1fd1d53a0
Author: Karsten Loesing <karsten.loesing at gmx.net>
Date:   Mon Jul 15 17:00:44 2013 +0200

    Make all tables more readable.
---
 src/org/torproject/doctor/MetricsWebsiteReport.java |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/org/torproject/doctor/MetricsWebsiteReport.java b/src/org/torproject/doctor/MetricsWebsiteReport.java
index e008301..f4a720e 100644
--- a/src/org/torproject/doctor/MetricsWebsiteReport.java
+++ b/src/org/torproject/doctor/MetricsWebsiteReport.java
@@ -113,7 +113,7 @@ public class MetricsWebsiteReport {
         + "  </head>\n"
         + "  <body>\n"
         + "  <style>\n"
-        + "    tr.bigtable:nth-child(2n+1) {\n"
+        + "    tr:nth-child(2n) {\n"
         + "      background-color:#eeeeee;\n"
         + "    }\n"
         + "  </style>\n"
@@ -744,7 +744,7 @@ public class MetricsWebsiteReport {
   /* Write a single row in the table of relay flags. */
   private void writeRelayFlagsTableRow(String fingerprint,
       String nickname) throws IOException {
-    this.bw.write("          <tr class=\"bigtable\">\n");
+    this.bw.write("          <tr>\n");
     if (this.downloadedConsensus.containsStatusEntry(fingerprint) &&
         this.downloadedConsensus.getStatusEntry(fingerprint).getFlags().
         contains("Named") && !Character.isDigit(nickname.charAt(0))) {



More information about the tor-commits mailing list