*** 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
html/user/
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-size: 0.9em;
}
span.news_date {
color: rgb(100,100,100);
font-size: 0.9em;
}
pre {
background-color: rgb(216, 232, 255);

View File

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

View File

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