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

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

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

Loading…
Cancel
Save