Bug 278636 Confusing style of the name of the submitter of a comment/rating/review

Patch by Alex Sirota <alex@elbrus.com>, r=alanjstr
This commit is contained in:
cst%andrew.cmu.edu 2005-01-21 19:24:52 +00:00
Родитель f2a60af56d
Коммит f8e03806ad
3 изменённых файлов: 25 добавлений и 13 удалений

Просмотреть файл

@ -91,17 +91,17 @@
margin: 0;
}
.opinions-date {
.opinions-info {
font-size: 85%;
margin: 0 0 0.5em 0;
}
.opinions-date a {
.opinions-info a {
text-decoration: none;
color: #666;
}
.opinions-date a:hover {
.opinions-info a:hover {
text-decoration: underline;
}

Просмотреть файл

@ -420,8 +420,11 @@ $sql = "SELECT TM.ID, TM.Name, TM.DateAdded, TM.DateUpdated, TM.Homepage, TM.Des
$commentdate = gmdate("F d, Y g:ia", strtotime("$commentdate")); //Create Customizeable Datestamp
echo"<li>\n";
echo"<h4>$commenttitle by $commentname</h4>\n";
echo"<p class=\"opinions-date\"><a href=\"#permalink\">$commentdate</a></p>\n";
echo"<h4>$commenttitle</h4>\n";
echo"<p class=\"opinions-info\">";
echo"by $commentname, ";
echo"<a href=\"#permalink\">$commentdate</a>";
echo"</p>\n";
echo"<p class=\"opinions-text\">$commentnotes</P>\n";
if ($rating != NULL) {
echo"<p class=\"opinions-rating\" title=\"$rating of 5 stars\">";
@ -592,8 +595,11 @@ $sql = "SELECT TM.ID, TM.Name, TM.DateAdded, TM.DateUpdated, TM.Homepage, TM.Des
echo"<li>\n";
echo"<a name=\"$commentid\"></a>\n";
echo"<h4>$title by $name</h4>\n";
echo"<p class=\"opinions-date\"><a href=\"#$commentid\">$date</a></p>\n";
echo"<h4>$title</h4>\n";
echo"<p class=\"opinions-info\">";
echo"by $name, ";
echo"<a href=\"#$commentid\">$date</a>";
echo"</p>\n";
echo"<p class=\"opinions-text\">$notes</P>\n";
if ($rating != NULL) {
echo"<p class=\"opinions-rating\" title=\"$rating of 5 stars\">";
@ -821,4 +827,4 @@ $sql = "SELECT TM.ID, TM.Name, TM.DateAdded, TM.DateUpdated, TM.Homepage, TM.Des
include"$page_footer";
?>
</body>
</html>
</html>

Просмотреть файл

@ -420,8 +420,11 @@ $sql = "SELECT TM.ID, TM.Name, TM.DateAdded, TM.DateUpdated, TM.Homepage, TM.Des
$commentdate = gmdate("F d, Y g:ia", strtotime("$commentdate")); //Create Customizeable Datestamp
echo"<li>\n";
echo"<h4>$commenttitle by $commentname</h4>\n";
echo"<p class=\"opinions-date\"><a href=\"#permalink\">$commentdate</a></p>\n";
echo"<h4>$commenttitle</h4>\n";
echo"<p class=\"opinions-info\">";
echo"by $commentname, ";
echo"<a href=\"#permalink\">$commentdate</a>";
echo"</p>\n";
echo"<p class=\"opinions-text\">$commentnotes</P>\n";
if ($rating != NULL) {
echo"<p class=\"opinions-rating\" title=\"$rating of 5 stars\">";
@ -592,8 +595,11 @@ $sql = "SELECT TM.ID, TM.Name, TM.DateAdded, TM.DateUpdated, TM.Homepage, TM.Des
echo"<li>\n";
echo"<a name=\"$commentid\"></a>\n";
echo"<h4>$title by $name</h4>\n";
echo"<p class=\"opinions-date\"><a href=\"#$commentid\">$date</a></p>\n";
echo"<h4>$title</h4>\n";
echo"<p class=\"opinions-info\">";
echo"by $name, ";
echo"<a href=\"#$commentid\">$date</a>";
echo"</p>\n";
echo"<p class=\"opinions-text\">$notes</P>\n";
if ($rating != NULL) {
echo"<p class=\"opinions-rating\" title=\"$rating of 5 stars\">";
@ -819,4 +825,4 @@ $sql = "SELECT TM.ID, TM.Name, TM.DateAdded, TM.DateUpdated, TM.Homepage, TM.Des
include"$page_footer";
?>
</body>
</html>
</html>