forked from I2P_Developers/i2p.i2p
Console: Fixed summary bar overflow (ticket #1739)
This commit is contained in:
@ -277,6 +277,7 @@ public class SummaryBarRenderer {
|
||||
.append(_t("show"))
|
||||
.append("</a></td></tr>\n" +
|
||||
|
||||
"</table><table>" + // fix for some rows with a big left side and some with a big right side
|
||||
"<tr title=\"")
|
||||
.append(_t("The version of the I2P software we are running"))
|
||||
.append("\">" +
|
||||
@ -287,6 +288,7 @@ public class SummaryBarRenderer {
|
||||
.append(_helper.getVersion())
|
||||
.append("</td></tr>\n" +
|
||||
|
||||
"</table><table>" + // fix for some rows with a big left side and some with a big right side
|
||||
"<tr title=\"")
|
||||
.append(_t("How long we've been running for this session"))
|
||||
.append("\">" +
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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 = "";
|
||||
|
Reference in New Issue
Block a user