diff options
| author | Chad Kieffer <chad@2tbsp.com> | 2008-11-13 03:39:18 +0000 |
|---|---|---|
| committer | Chad Kieffer <chad@2tbsp.com> | 2008-11-13 03:39:18 +0000 |
| commit | c63ddc34329075293b5a7130f5ab0677631ab3af (patch) | |
| tree | 1fbc3c4dd08bc1337da542039124f830176f192c /modules/comment/views/comment_list.html.php | |
| parent | 74216a3c636673fd49e82a7c31c0c9ed1de60e7f (diff) | |
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.
Diffstat (limited to 'modules/comment/views/comment_list.html.php')
| -rw-r--r-- | modules/comment/views/comment_list.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/views/comment_list.html.php b/modules/comment/views/comment_list.html.php index 1545a106..ea824597 100644 --- a/modules/comment/views/comment_list.html.php +++ b/modules/comment/views/comment_list.html.php @@ -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 ?> |
