From 1d655c7abca2d96b74b4a64625213da4c144eb0a Mon Sep 17 00:00:00 2001
From: z3d <z3d@mail.i2p>
Date: Wed, 29 Jul 2009 14:46:47 +0000
Subject: [PATCH] Mostly last-minute enhancements to the classic theme.

---
 .../themes/console/classic/console.css        | 52 +++++++++++++++++--
 .../resources/themes/console/dark/console.css |  2 +-
 .../src/net/i2p/router/RouterVersion.java     |  2 +-
 3 files changed, 51 insertions(+), 5 deletions(-)

diff --git a/installer/resources/themes/console/classic/console.css b/installer/resources/themes/console/classic/console.css
index 3816c0812f..7e7286fdc2 100644
--- a/installer/resources/themes/console/classic/console.css
+++ b/installer/resources/themes/console/classic/console.css
@@ -4,7 +4,7 @@ body {
      text-align: center;
      background: #FFF;
      color: #000;
-     font: 100% Verdana, Tahoma, Helvetica, sans-serif;
+     font: 10pt/120% Verdana, Tahoma, Helvetica, sans-serif;
 }
 
 .hide {
@@ -54,10 +54,17 @@ div.routersummary {
      padding: 5px;
      text-align: left;
      border: medium solid #efefff;
-     font-size: 0.82em;
+     font-size: 9pt;
      word-wrap: break-word;
 }
 
+div.routersummary hr {
+     color: #ccf;
+     background: #ccf;
+     height: 2px;
+     border: 0px solid #ccf;
+     margin: 10px 0;
+}
 div.warning {
      margin: 0em 1em 1em 224px;
      padding: .5em 1em;
@@ -85,7 +92,7 @@ div.news {
      padding: .5em 1em;
      background: #ffffc0;
      border: medium solid #ffffa0;
-     text-align: left;
+     text-align: justify;
      color: inherit;
 }
 
@@ -120,3 +127,42 @@ h1 {
      font-size: 7pt;
      display: none !important;
 }
+
+table {
+     border-collapse: collapse;
+     width: 100%;
+     border: 5px solid #dfd;
+     margin: 5px 0px;
+     cell-padding: 1px;
+     font-size: 7pt;
+     background: #fff;
+}
+
+th {
+     background-color: #ccf;
+     padding: 5px 2px;
+}
+
+tt {
+     font-size: 8pt;
+}
+
+td {
+     padding: 2px;
+}
+
+tr:nth-child(even) {
+     background-color: #eef;
+}
+
+tr:nth-child(odd) {
+     background-color: #ddf;
+}
+
+hr {
+     color: #ff9;
+     background: #ff9;
+     height: 2px;
+     border: 0px solid #ff9;
+     margin: 10px 0;
+}
\ No newline at end of file
diff --git a/installer/resources/themes/console/dark/console.css b/installer/resources/themes/console/dark/console.css
index 3709ef0b5e..3c17280fe4 100644
--- a/installer/resources/themes/console/dark/console.css
+++ b/installer/resources/themes/console/dark/console.css
@@ -591,7 +591,7 @@ form {}
 }
 
 .smallhead {
-     font-size: 8pt
+     font-size: 7pt
 }
 
 .mediumtags {
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index 78e0509fd9..23d4b1f0db 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -18,7 +18,7 @@ public class RouterVersion {
     /** deprecated */
     public final static String ID = "Monotone";
     public final static String VERSION = CoreVersion.VERSION;
-    public final static long BUILD = 33;
+    public final static long BUILD = 34;
     /** for example "-test" */
     public final static String EXTRA = "-rc";
     public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
-- 
GitLab