Bump to -1, belatedly; more aesthetic nudges.

This commit is contained in:
z3d
2009-10-14 17:25:29 +00:00
parent 2cfc2bb60d
commit c3e646ca22
4 changed files with 19 additions and 7 deletions

View File

@ -77,7 +77,7 @@ public class NewsFetcher implements Runnable, EepGet.StatusListener {
long now = _context.clock().now(); long now = _context.clock().now();
return return
(_lastUpdated > 0 ? "News last updated " + DataHelper.formatDuration(now - _lastUpdated) + " ago" : "") + (_lastUpdated > 0 ? "News last updated " + DataHelper.formatDuration(now - _lastUpdated) + " ago" : "") +
(_lastFetch > _lastUpdated ? ", last checked " + DataHelper.formatDuration(now - _lastFetch) + " ago" : ""); (_lastFetch > _lastUpdated ? "; last checked " + DataHelper.formatDuration(now - _lastFetch) + " ago." : "");
} }
public void run() { public void run() {

View File

@ -495,7 +495,7 @@ hr {
} }
div.joblog { div.joblog {
margin-top: -10px; margin: 10px 0;
line-height: 130% !important; line-height: 130% !important;
} }
@ -530,7 +530,7 @@ div.joblog p {
} }
div.joblog h3 { div.joblog h3 {
margin: -5px 0 5px 0; margin: 5px 0 5px 0;
} }
div.joblog hr { div.joblog hr {

View File

@ -269,16 +269,17 @@ div.main textarea {
div.news { div.news {
margin: 15px 15px 15px 220px; margin: 15px 15px 15px 220px;
padding: 5px 30px 15px 30px; padding: 5px 30px 10px 30px;
border: 1px solid #99f; border: 1px solid #99f;
background: #004; background: #004;
background-image: -moz-linear-gradient(top, bottom, from(#003), to(#005), color-stop(30%, #003), color-stop(100%, #001)); background-image: -moz-linear-gradient(top, bottom, from(#003), to(#005), color-stop(30%, #003), color-stop(100%, #001));
/* background: #003 url("images/darkbluetile.png");*/ /* background: #003 url("images/darkbluetile.png");*/
color: #eef; color: #aaf;
border-radius: 4px; border-radius: 4px;
-moz-border-radius: 4px; -moz-border-radius: 4px;
-khtml-border-radius: 4px; -khtml-border-radius: 4px;
text-align: justify; font-size: 7.5pt;
text-align: right;
-moz-box-shadow: inset 0px 0px 1px 0px #eef; -moz-box-shadow: inset 0px 0px 1px 0px #eef;
-khtml-box-shadow: inset 0px 0px 1px 0px #eef; -khtml-box-shadow: inset 0px 0px 1px 0px #eef;
box-shadow: inset 0px 0px 1px 0px #eef; box-shadow: inset 0px 0px 1px 0px #eef;
@ -305,8 +306,14 @@ div.news h4 {
div.news p { div.news p {
margin-top: -5px; margin-top: -5px;
font-size: 8.5pt;
color: #eef;
} }
div.news hr {
margin: -2px 0 5px 0;
}
div.confignav { div.confignav {
padding: 15px 10px !important; padding: 15px 10px !important;
margin: 15px 0; margin: 15px 0;
@ -690,6 +697,11 @@ hr {
margin: 10px 0; margin: 10px 0;
} }
hr:last-child {
margin-top: 20px;
}
sidebarlogo { sidebarlogo {
text-align: center; text-align: center;
} }

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 = 0; public final static long BUILD = 1;
/** 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;