diff --git a/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java b/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java index 7098c90899..1ccfe56e88 100644 --- a/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java +++ b/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java @@ -243,10 +243,10 @@ public class I2PSnarkServlet extends Default { out.write(req.getRequestURI()); if (peerParam != null) { out.write("\">"); - out.write(_("\"Hide")); + out.write(_("\"Hide")); } else { out.write("?p=1\">"); - out.write(_("\"Show")); + out.write(_("\"Show")); } out.write("
\n"); } @@ -291,8 +291,8 @@ public class I2PSnarkServlet extends Default { } if (snarks.isEmpty()) { - out.write("" + - "" + + ""); out.write(_("No torrents loaded.")); out.write("\n"); @@ -300,12 +300,12 @@ public class I2PSnarkServlet extends Default { out.write("\n" + " "); out.write(_("Totals")); - out.write(" ("); + out.write(" » "); out.write(ngettext("1 torrent", "{0} torrents", snarks.size())); out.write(", "); out.write(DataHelper.formatSize2(stats[5]) + "B, "); out.write(ngettext("1 connected peer", "{0} connected peers", (int) stats[4])); - out.write(")\n" + + out.write("\n" + "  \n" + " " + formatSize(stats[0]) + "\n" + " " + formatSize(stats[1]) + "\n" + diff --git a/installer/resources/themes/console/snark/snark.css b/installer/resources/themes/console/snark/snark.css index f62bb390c2..042e99e3a8 100644 --- a/installer/resources/themes/console/snark/snark.css +++ b/installer/resources/themes/console/snark/snark.css @@ -2,7 +2,7 @@ /* Guantanamo Commemorative Edition. */ body { - background: #333 url('/themes/console/snark/images/graytile.png'); + background: #101 url('/themes/console/snark/images/graytile.png'); color: #001; font: 8pt "Lucida Sans Unicode","Bitstream Vera Sans",Verdana,Tahoma,Helvetica,sans-serif; } @@ -167,6 +167,14 @@ td:first-child { font-size: 8pt; } +.snarkTorrentNoneLoaded { + background: #323; + font-size: 8.5pt; + font-weight: bold; + text-align: center !important; + color: #bbb !important; +} + .snarkTorrentStatus { padding: 1px 0 2px; }