Cleanups:

- Minor theme updates/fixes
- Added #jumplist div to proxy error to make styling easier
- "tabindex -1"s to ignore disabled radios in snark/tracker config
- Updates to eepsite css files.
This commit is contained in:
str4d
2017-05-15 03:18:34 +00:00
parent e8c28ad42c
commit 6fd66c9396
19 changed files with 279 additions and 140 deletions

View File

@@ -743,7 +743,7 @@ public abstract class I2PTunnelHTTPClientBase extends I2PTunnelClientBase implem
if (first) {
first = false;
out.write("<br><br><h3>");
out.write("<br><br>\n<div id=\"jumplinks\">\n<h3>");
out.write(_t("Click a link below for an address helper from a jump service"));
out.write("</h3>\n");
} else {
@@ -759,7 +759,7 @@ public abstract class I2PTunnelHTTPClientBase extends I2PTunnelClientBase implem
}
}
}
out.write("</div>");
out.write("</div>\n</div>\n");
writeFooter(out);
}
@@ -791,7 +791,7 @@ public abstract class I2PTunnelHTTPClientBase extends I2PTunnelClientBase implem
StringBuilder buf = new StringBuilder(128);
buf.append("<div class=\"proxyfooter\"><p><i>I2P HTTP Proxy Server<br>Generated on: ")
.append(new Date().toString())
.append("</i></div></body></html>\n");
.append("</i></div>\n</body>\n</html>\n");
return buf.toString();
}