mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-22 23:05:18 -04:00
Major updates to form CSS. Now using unordered lists for layouts. Added .gInline for forms like login, search, tags. Updated comment, login, search, and tagging forms. All form styles live in screen.css now. Still a lot to do, but this is a good foundation.
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<? defined("SYSPATH") or die("No direct script access."); ?>
|
||||
<ul id="gCommentThread">
|
||||
<? foreach (array_reverse($comments) as $index => $comment): ?>
|
||||
<li id="gComment-<?= $index; ?>" class="gComment <?= $index % 2 ? 'odd' : 'even' ?>">
|
||||
<li id="gComment-<?= $index; ?>" class="gComment <?= $index % 2 ? 'gOdd' : 'gEven' ?>">
|
||||
<p>
|
||||
<a href="#" class="gAuthor"><?= $comment->author ?></a>
|
||||
<?= comment::format_elapsed_time($comment->datetime) ?>,
|
||||
<span class="understate"><?= strftime('%c', $comment->datetime) ?></span>
|
||||
<span class="gUnderstate"><?= strftime('%c', $comment->datetime) ?></span>
|
||||
</p>
|
||||
<div>
|
||||
<?= $comment->text ?>
|
||||
|
||||
Reference in New Issue
Block a user