More classic theme tweaks,

This commit is contained in:
z3d
2009-08-02 19:05:40 +00:00
parent 3a0cdf1388
commit c7c132c0ac
7 changed files with 24 additions and 18 deletions

View File

@ -2,7 +2,8 @@
* Better support for Internet Explorer/classic theme. * Better support for Internet Explorer/classic theme.
* Incremental improvements to classic theme. * Incremental improvements to classic theme.
* More UI tweaks and fiddles. * More UI tweaks and fiddles.
* Fixes for I2PSnark UI; more to come.
2009-07-31 dr|z3d 2009-07-31 dr|z3d
* Resolve anomalous buttons and text fields in console ui. * Resolve anomalous buttons and text fields in console ui.
* Enhance presentation of data in /peers.jsp. * Enhance presentation of data in /peers.jsp.

View File

@ -26,12 +26,11 @@ pre {
div.logo { div.logo {
float: left; float: left;
width: 200px; width: 175px;
left: 1em; margin: 0 0 0 20px;
top: 1em; padding: 10px;
margin: 0em;
padding: .5em;
text-align: center; text-align: center;
border: 5px solid #dedeff;
} }
div.toolbar { div.toolbar {
@ -75,12 +74,15 @@ div.routersummary p {
} }
div.warning { div.warning {
margin: 0 10px 10px 205px; margin: 20px 20px 10px 240px;
padding: 5px 10px; padding: 10px 20px 20px 75px;
background: #ffefef; background: #ffefef;
border: medium solid #ffafaf; border: 5px solid #ffafaf;
text-align: left; text-align: left;
color: inherit; color: inherit;
background-image:url("../images/errortriangle.png");
background-position:15px center;
background-repeat:no-repeat;
} }
div.main { div.main {

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -63,11 +63,12 @@ body {
-khtml-border-radius: 4px; -khtml-border-radius: 4px;
border-radius: 4px; border-radius: 4px;
border: 2px solid #930; border: 2px solid #930;
text-align: center; text-align: left;
overflow-x: scroll; overflow: auto;
background: #ddf url('../console/images/orangetile.png'); background: #f40 url('../console/images/orangetile.png');
color: #531; color: #531;
height: 64px; height: 64px;
width: 100%;
} }
pre { pre {
@ -85,6 +86,7 @@ table {
padding: 0px; padding: 0px;
border-width: 0px; border-width: 0px;
border-spacing: 0px; border-spacing: 0px;
border-collapse: collapse;
} }
th { th {
@ -92,8 +94,9 @@ th {
font-size: 8pt; font-size: 8pt;
border-top: 1px outset #001; border-top: 1px outset #001;
border-bottom: 1px inset #001; border-bottom: 1px inset #001;
background: #f91 url('/themes/console/images/tabletitleorange.png') repeat-x; background: #f60 url('/themes/console/images/tabletitleorange.png') repeat-x;
text-align: left; text-align: left;
whitespace: nowrap;
} }
.SnarkTorrents { .SnarkTorrents {
@ -134,7 +137,7 @@ td {
.page { .page {
background-color: #fff; background-color: #fff;
color:#310; color:#310;
min-width: 700px !important; min-width: 800px !important;
/* max-width: 800px !important; */ /* max-width: 800px !important; */
margin: 20px; margin: 20px;
padding: 10px 20px 5px 20px; padding: 10px 20px 5px 20px;
@ -186,7 +189,7 @@ a:visited{
} }
a:hover{ a:hover{
color: #f60; color: #f40;
font-weight: bold; font-weight: bold;
} }

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 05; public final static long BUILD = 06;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;

View File

@ -583,8 +583,8 @@ public class TunnelPoolManager implements TunnelManagerFacade {
live += pending.size(); live += pending.size();
} }
if (live <= 0) if (live <= 0)
out.write("<div class=\"statusnotes\"><center>N<b>No tunnels; waiting for the grace period to end.</center></b></div>\n"); out.write("<div class=\"statusnotes\"><center><b>No tunnels; waiting for the grace period to end.</center></b></div>\n");
out.write("<div class=\"statusnotes\"><center><b>Lifetime bandwidth usage: " + DataHelper.formatSize(processedIn*1024) + "<B in, " + out.write("<div class=\"statusnotes\"><center><b>Lifetime bandwidth usage: " + DataHelper.formatSize(processedIn*1024) + "B in, " +
DataHelper.formatSize(processedOut*1024) + "B out</b></center></div>"); DataHelper.formatSize(processedOut*1024) + "B out</b></center></div>");
} }