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

@ -2494,14 +2494,14 @@ public class I2PSnarkServlet extends BasicServlet {
.append(name).append("\" title=\"").append(_t("Mark tracker for deletion")).append("\">" +
"</td><td><label for=\"").append(name).append("\">").append(name)
.append("</td><td>").append(urlify(homeURL, 35))
.append("</td><td><input type=\"radio\" class=\"optbox\" value=\"0\" name=\"ttype_")
.append("</td><td><input type=\"radio\" class=\"optbox\" value=\"0\" tabindex=\"-1\" name=\"ttype_")
.append(announceURL).append("\"");
if (!(isOpen || isPrivate))
buf.append(" checked=\"checked\"");
else if (isKnownOpen)
buf.append(" disabled=\"disabled\"");
buf.append(">" +
"</td><td><input type=\"radio\" class=\"optbox\" value=\"1\" name=\"ttype_")
"</td><td><input type=\"radio\" class=\"optbox\" value=\"1\" tabindex=\"-1\" name=\"ttype_")
.append(announceURL).append("\"");
if (isOpen)
buf.append(" checked=\"checked\"");
@ -2509,7 +2509,7 @@ public class I2PSnarkServlet extends BasicServlet {
t.announceURL.equals("http://tracker2.postman.i2p/announce.php"))
buf.append(" disabled=\"disabled\"");
buf.append(">" +
"</td><td><input type=\"radio\" class=\"optbox\" value=\"2\" name=\"ttype_")
"</td><td><input type=\"radio\" class=\"optbox\" value=\"2\" tabindex=\"-1\" name=\"ttype_")
.append(announceURL).append("\"");
if (isPrivate) {
buf.append(" checked=\"checked\"");