*** empty log message ***

svn path=/trunk/boinc/; revision=11799
This commit is contained in:
David Anderson 2007-01-07 20:00:15 +00:00
parent 19504cc033
commit 80d6938194
4 changed files with 21 additions and 3 deletions

View File

@ -229,3 +229,12 @@ David 7 Jan 2007
cpu_sched.C cpu_sched.C
html/user/ html/user/
forum_forum.php forum_forum.php
David 7 Jan 2007
- user web: don't show news dates as <h3>. Use a style instead.
html/
inc/
news.inc
user/
white.css

View File

@ -52,6 +52,10 @@ span.note{
font-weight: normal; font-weight: normal;
font-size: 0.9em; font-size: 0.9em;
} }
span.news_date {
color: rgb(100,100,100);
font-size: 0.9em;
}
pre { pre {
background-color: rgb(216, 232, 255); background-color: rgb(216, 232, 255);

View File

@ -1,8 +1,8 @@
<?php <?php
function news_item($date, $text, $title) { function news_item($date, $text, $title) {
echo '<h3>'.$date.' '.$title.'</h3> echo '<p><span class=news_date>'.$date.' '.$title.'</span>
<p>'.$text.'</p> <br>'.$text.'
'; ';
} }

View File

@ -233,6 +233,11 @@ span.note{
font-weight: normal; font-weight: normal;
font-size: 0.9em; font-size: 0.9em;
} }
span.news_date {
color: rgb(100,100,100);
font-size: 0.9em;
}
.code { .code {
font-family: System, Fixed, sans-serif; font-family: System, Fixed, sans-serif;
@ -266,4 +271,4 @@ span.note{
.smalltext { .smalltext {
font-size: 0.8em; font-size: 0.8em;
} }