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:
Chad Kieffer
2008-11-13 03:39:18 +00:00
parent 74216a3c63
commit c63ddc3432
7 changed files with 380 additions and 357 deletions
+2 -2
View File
@@ -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 ?>