Theme stuff and lose excess.

This commit is contained in:
z3d
2009-10-03 07:41:57 +00:00
parent 82976e609f
commit 09a2854b8b
4 changed files with 12 additions and 9 deletions

View File

@ -416,7 +416,7 @@ table {
border: 5px solid #bbf; border: 5px solid #bbf;
margin: 5px 0px; margin: 5px 0px;
cell-padding: 1px; cell-padding: 1px;
font-size: 7pt; font-size: 7.5pt;
background: #fff; background: #fff;
width: 100%; width: 100%;
} }

View File

@ -205,7 +205,7 @@ div.routersummarytr:nth-child(odd) {
div.warning { div.warning {
margin: 5px 20px 10px 240px; margin: 5px 20px 10px 240px;
padding: 0px 25px 20px 75px; padding: 5px 25px 20px 75px;
background: #005; background: #005;
border: 1px solid #99f; border: 1px solid #99f;
text-align: left; text-align: left;
@ -268,11 +268,12 @@ div.main textarea {
} }
div.news { div.news {
margin: 0px 15px 20px 220px; margin: 15px 15px 15px 220px;
padding: 20px 30px 20px 30px; padding: 20px 30px 20px 30px;
border: 1px solid #99f; border: 1px solid #99f;
background: #004; background: #004;
background: url("images/darkbluetile.png"); 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");*/
color: #eef; color: #eef;
border-radius: 4px; border-radius: 4px;
-moz-border-radius: 4px; -moz-border-radius: 4px;
@ -542,7 +543,8 @@ h1 {
letter-spacing: 0.15em; letter-spacing: 0.15em;
text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.8); text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.8);
white-space: normal; white-space: normal;
background: #004 url('images/darkbluebg.png'); background: #002 //url('images/darkbluebg.png');
background-image: -moz-linear-gradient(top, bottom, from(#001), to(#003), color-stop(30%, #001), color-stop(100%, #001));
-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;
@ -558,7 +560,8 @@ h2 {
color: #fff; color: #fff;
text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.5); text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.5);
letter-spacing: 0.05em; letter-spacing: 0.05em;
background: #003 url('images/titletile.png'); background: #002; // url('images/darkbluebg.png');
background-image: -moz-linear-gradient(top, bottom, from(#001), to(#003), color-stop(30%, #001), color-stop(100%, #001));
padding: 5px 10px 8px 10px; padding: 5px 10px 8px 10px;
wordwrap: none; wordwrap: none;
border: 1px solid #99f; border: 1px solid #99f;
@ -590,7 +593,7 @@ h3 {
border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0; -moz-border-radius: 0 4px 4px 0;
-khtml-border-radius: 0 4px 4px 0; -khtml-border-radius: 0 4px 4px 0;
background: #007; background: #002;
/* background: url(images/lightbluebg.png);*/ /* background: url(images/lightbluebg.png);*/
} }
@ -795,7 +798,7 @@ form {}
.joblog { .joblog {
margin: 15px 0 15px 0; margin: 15px 0 15px 0;
padding: 20px !important; padding: 5px 20px 10px 20px !important;
border: 1px solid #99f; border: 1px solid #99f;
background-color: #004; background-color: #004;
background: url("images/darkbluebg.png"); background: url("images/darkbluebg.png");

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1065,7 +1065,7 @@ public class KademliaNetworkDatabaseFacade extends NetworkDatabaseFacade {
if (countryList.size() > 0) { if (countryList.size() > 0) {
Collections.sort(countryList); Collections.sort(countryList);
buf.append("<table>\n"); buf.append("<table>\n");
buf.append("<tr><th>Country</th><th>Count</th></tr>\n"); buf.append("<tr><th align=\"left\">Country</th><th>Count</th></tr>\n");
for (String country : countryList) { for (String country : countryList) {
int num = countries.count(country); int num = countries.count(country);
buf.append("<tr><td><img height=\"11\" width=\"16\" alt=\"").append(country.toUpperCase()).append("\""); buf.append("<tr><td><img height=\"11\" width=\"16\" alt=\"").append(country.toUpperCase()).append("\"");