Added column-layout for surftips, some color-fixes for the default-style (default-colors if the user changed the standard-colors in his browser) and a small fix for the dl-layout for forms, now also two-line-labels are displayed correctly.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3152 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
michitux 18 years ago
parent df6281ba1f
commit c43aae2143

@ -12,7 +12,7 @@
} }
</script> </script>
</head> </head>
<body> <body id="Surftips">
#(display)# #(display)#
#%env/templates/simpleheader.template%# #%env/templates/simpleheader.template%#
:: ::
@ -43,9 +43,10 @@
</div> </div>
<!-- link end --> <!-- link end -->
#{/results}# #{/results}#
<br /> <p class="aftersurftips">
...provided by YaCy peers using public bookmarks, link votes and crawl start points<br /> ...provided by YaCy peers using public bookmarks, link votes and crawl start points<br />
<a href="/Surftips.html?surftips=0">Hide surftips</a> <a href="/Surftips.html?surftips=0">Hide surftips</a>
</p>
#(/surftips)# #(/surftips)#
#(display)# #(display)#

@ -238,6 +238,19 @@ div.searchresults {
margin-bottom:1em; margin-bottom:1em;
} }
body#Surftips div.searchresults {
float:left;
width:35em;
height:6em;
margin-left:1em;
margin-bottom:0;
overflow:hidden;
}
p.aftersurftips {
clear:both;
}
/* Bookmarks */ /* Bookmarks */
div.Tags { div.Tags {
@ -331,6 +344,7 @@ form dt, dl.pairs dt {
form dd { form dd {
margin:0 0 0.5em 0.25em; margin:0 0 0.5em 0.25em;
float:left;
} }
dl.pairs dd { dl.pairs dd {
@ -339,40 +353,40 @@ dl.pairs dd {
} }
/* for pages: */ /* for pages: */
body#ViewLog div.log { body#ViewLog div.log {
height:600px; height:600px;
overflow:scroll; overflow:scroll;
} }
body#ViewLog pre { body#ViewLog pre {
width:100%; /* TODO: fix width in IE */ width:100%; /* TODO: fix width in IE */
margin-top:0px; margin-top:0px;
margin-bottom:0px; margin-bottom:0px;
font-family: Courier,monospace; font-family: Courier,monospace;
font-weight: normal; font-weight: normal;
font-size: small; font-size: small;
} }
body#ViewLog pre.logSevere { body#ViewLog pre.logSevere {
color:red; color:red;
} }
body#ViewLog pre.logWarning { body#ViewLog pre.logWarning {
color:orange color:orange
} }
body#ViewLog pre.logSystem { body#ViewLog pre.logSystem {
color:black; color:black;
} }
body#ViewLog pre.logInfo { body#ViewLog pre.logInfo {
color:black; color:black;
} }
body#ViewLog pre.logDebug { body#ViewLog pre.logDebug {
color:black; color:black;
} }
body#QuickCrawlLink p, body#QuickCrawlLink h4 { body#QuickCrawlLink p, body#QuickCrawlLink h4 {
padding:0 5%; padding:0 5%;

@ -2,14 +2,17 @@
body { body {
background-color:#F8F8FF; background-color:#F8F8FF;
color:black;
} }
a:link { a:link {
color:#00008B; color:#00008B;
background-color:transparent;
} }
a:link:hover { a:link:hover {
color:#0000FF; color:#0000FF;
background-color:transparent;
} }
@ -209,9 +212,15 @@ body#ViewLog pre {
fieldset { fieldset {
background-color:#ddeeee; background-color:#ddeeee;
color:black;
border:1px solid #aaa; border:1px solid #aaa;
} }
input, select, textarea {
color: black;
background-color: white;
}
legend { legend {
background-color:#88aaaa; background-color:#88aaaa;
} }

Loading…
Cancel
Save