Author: bombe
Date: 2006-06-10 15:51:04 +0000 (Sat, 10 Jun 2006)
New Revision: 9130
Added:
trunk/freenet/src/freenet/clients/http/staticfiles/themes/boxed/background.png
Modified:
trunk/freenet/src/freenet/clients/http/staticfiles/themes/boxed/theme.css
Log:
use aqua background
use ul & li for all kinds of lists (allows horizontal display with other themes)
Copied:
trunk/freenet/src/freenet/clients/http/staticfiles/themes/boxed/background.png
(from rev 8984,
trunk/freenet/src/freenet/clients/http/staticfiles/themes/aqua/background.png)
Property changes on:
trunk/freenet/src/freenet/clients/http/staticfiles/themes/boxed/background.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified:
trunk/freenet/src/freenet/clients/http/staticfiles/themes/boxed/theme.css
===================================================================
--- trunk/freenet/src/freenet/clients/http/staticfiles/themes/boxed/theme.css
2006-06-10 15:25:49 UTC (rev 9129)
+++ trunk/freenet/src/freenet/clients/http/staticfiles/themes/boxed/theme.css
2006-06-10 15:51:04 UTC (rev 9130)
@@ -2,6 +2,7 @@
body {
font-family: tahoma;
font-size: 11px;
+ background-image: url("background.png");
width: 750px;
margin: 15px auto;
@@ -44,6 +45,7 @@
font-family: verdana;
font-weight: bold;
font-size: 11px;
+ white-space: nowrap;
z-index: 5;
}
@@ -70,6 +72,13 @@
overflow: auto;
}
+.infobox-content ul {
+ display: inline;
+ list-style-type: none;
+ margin: 0px;
+ padding: 0px;
+}
+
#navbar {
padding-top: 1px;
padding-bottom: 1px;
@@ -106,7 +115,11 @@
}
ul.config {
+ display: block;
list-style-type: none;
+ margin-top: 1em;
+ margin-bottom: 1em;
+ padding: 3px 5px;
}
li .configshortdesc {
@@ -138,6 +151,16 @@
color: #f00;
}
+th {
+ text-align: center;
+ background-color: #aaa;
+ border-top: solid 1px #fff;
+ border-left: solid 1px #fff;
+ border-bottom: solid 1px #222;
+ border-right: solid 1px #222;
+ padding: 1px 3px;
+}
+
table.column {
table-layout: fixed;
width: 100%;
@@ -178,4 +201,14 @@
text-align: right;
}
+.float-right infobox {
+ float: right;
+ width: 100%;
+}
+
+#bookmarkedit {
+ margin-top: 1em;
+ display: block;
+}
+
/* vim: set ts=4: sw=4: */