snark css tweaks
This commit is contained in:
@ -966,14 +966,14 @@ public class I2PSnarkServlet extends Default {
|
|||||||
*/
|
*/
|
||||||
out.write("<tr><td>");
|
out.write("<tr><td>");
|
||||||
out.write(_("Total uploader limit"));
|
out.write(_("Total uploader limit"));
|
||||||
out.write(": <td><input type=\"text\" name=\"upLimit\" value=\""
|
out.write(": <td><input type=\"text\" name=\"upLimit\" class=\"r\" value=\""
|
||||||
+ _manager.util().getMaxUploaders() + "\" size=\"3\" maxlength=\"3\" > ");
|
+ _manager.util().getMaxUploaders() + "\" size=\"3\" maxlength=\"3\" > ");
|
||||||
out.write(_("peers"));
|
out.write(_("peers"));
|
||||||
out.write("<br>\n");
|
out.write("<br>\n");
|
||||||
|
|
||||||
out.write("<tr><td>");
|
out.write("<tr><td>");
|
||||||
out.write(_("Up bandwidth limit"));
|
out.write(_("Up bandwidth limit"));
|
||||||
out.write(": <td><input type=\"text\" name=\"upBW\" value=\""
|
out.write(": <td><input type=\"text\" name=\"upBW\" class=\"r\" value=\""
|
||||||
+ _manager.util().getMaxUpBW() + "\" size=\"3\" maxlength=\"3\" > KBps <i>(");
|
+ _manager.util().getMaxUpBW() + "\" size=\"3\" maxlength=\"3\" > KBps <i>(");
|
||||||
out.write(_("Half available bandwidth recommended."));
|
out.write(_("Half available bandwidth recommended."));
|
||||||
out.write(" <a href=\"/config.jsp\" target=\"blank\">");
|
out.write(" <a href=\"/config.jsp\" target=\"blank\">");
|
||||||
@ -1020,7 +1020,7 @@ public class I2PSnarkServlet extends Default {
|
|||||||
|
|
||||||
out.write("<tr><td>");
|
out.write("<tr><td>");
|
||||||
out.write(_("I2CP port"));
|
out.write(_("I2CP port"));
|
||||||
out.write(": <td><input type=\"text\" name=\"i2cpPort\" value=\"" +
|
out.write(": <td><input type=\"text\" name=\"i2cpPort\" class=\"r\" value=\"" +
|
||||||
+ _manager.util().getI2CPPort() + "\" size=\"5\" maxlength=\"5\" > <br>\n");
|
+ _manager.util().getI2CPPort() + "\" size=\"5\" maxlength=\"5\" > <br>\n");
|
||||||
|
|
||||||
StringBuilder opts = new StringBuilder(64);
|
StringBuilder opts = new StringBuilder(64);
|
||||||
|
@ -185,13 +185,30 @@ input {
|
|||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 2px;
|
padding: 2px 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
border: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.r {
|
||||||
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
background: #ffe;
|
background: #ffe;
|
||||||
color: #310;
|
color: #310;
|
||||||
font: 9pt "Lucida Sans Unicode","Bitstream Vera Sans",Verdana,Tahoma,Helvetica,sans-serif;
|
font: 9pt "Lucida Sans Unicode","Bitstream Vera Sans",Verdana,Tahoma,Helvetica,sans-serif;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 2px 2px 2px 3px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
background: #ffe;
|
||||||
|
color: #310;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 1px 4px 0px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
Reference in New Issue
Block a user