diff --git a/apps/routerconsole/java/src/net/i2p/router/web/SummaryBarRenderer.java b/apps/routerconsole/java/src/net/i2p/router/web/SummaryBarRenderer.java
index 07664b2ee..958bd05b0 100644
--- a/apps/routerconsole/java/src/net/i2p/router/web/SummaryBarRenderer.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/SummaryBarRenderer.java
@@ -277,6 +277,7 @@ public class SummaryBarRenderer {
.append(_t("show"))
.append("\n" +
+ "
" + // fix for some rows with a big left side and some with a big right side
"" +
@@ -287,6 +288,7 @@ public class SummaryBarRenderer {
.append(_helper.getVersion())
.append("
\n" +
+ "
" + // fix for some rows with a big left side and some with a big right side
"" +
diff --git a/history.txt b/history.txt
index 0a07d637f..6e217a4af 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,6 @@
+2016-01-07 zzz
+ * Console: Fixed summary bar overflow (ticket #1739)
+
2016-01-06 zzz
* Build: Remove big geoip files from release again
* Console: Properly register listen hosts with PortMapper
diff --git a/installer/resources/themes/console/classic/console.css b/installer/resources/themes/console/classic/console.css
index 398329923..ff6d24f57 100644
--- a/installer/resources/themes/console/classic/console.css
+++ b/installer/resources/themes/console/classic/console.css
@@ -227,7 +227,7 @@ div.routersummary ul {
div.routersummary table {
border: 0;
text-align: center !important;
- margin: -5px 0px -5px 0px;
+ margin: -5px 0px 5px 0px;
width: 193px !important;
overflow: hidden;
font-size: 8pt;
diff --git a/installer/resources/themes/console/dark/console.css b/installer/resources/themes/console/dark/console.css
index 282d0d599..78d41b92f 100644
--- a/installer/resources/themes/console/dark/console.css
+++ b/installer/resources/themes/console/dark/console.css
@@ -177,7 +177,7 @@ div.routersummary ul {
div.routersummary table {
border: 0;
text-align: center !important;
- margin: -5px -7px -5px -8px !important;
+ margin: -5px -7px 5px -8px !important;
width: 188px !important;
overflow: hidden;
font-size: 8pt;
diff --git a/installer/resources/themes/console/light/console.css b/installer/resources/themes/console/light/console.css
index 24e34751e..acdd0edc7 100644
--- a/installer/resources/themes/console/light/console.css
+++ b/installer/resources/themes/console/light/console.css
@@ -189,7 +189,7 @@ div.routersummary ul {
div.routersummary table {
border: 0;
text-align: center !important;
- margin: -6px -5px -4px -5px;
+ margin: -6px -5px 5px -5px;
width: 190px !important;
overflow: hidden;
font-size: 8pt;
diff --git a/installer/resources/themes/console/midnight/console.css b/installer/resources/themes/console/midnight/console.css
index b35962832..383697365 100644
--- a/installer/resources/themes/console/midnight/console.css
+++ b/installer/resources/themes/console/midnight/console.css
@@ -263,7 +263,7 @@ div.routersummary ul {
div.routersummary table {
border: 0;
text-align: center !important;
- margin: -5px 0 -5px 2px;
+ margin: -5px 0 5px 2px;
width: 186px !important;
overflow: hidden;
padding: 0 -12px;
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index f5c926454..43dca9240 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 = 20;
+ public final static long BUILD = 21;
/** for example "-test" */
public final static String EXTRA = "";