aboutsummaryrefslogtreecommitdiff
path: root/templates/recentchanges.tmpl
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-06 19:50:32 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-06 19:50:32 +0000
commit723ebda4760d7e6bb848f1b1d39706f441d3f209 (patch)
tree1bf079366dc0959a81e4eb13e221424b871a1b54 /templates/recentchanges.tmpl
parent89697f2c7a9cebc9e0c33ca1d056388b9e827eb8 (diff)
downloadikiwiki-723ebda4760d7e6bb848f1b1d39706f441d3f209.tar
ikiwiki-723ebda4760d7e6bb848f1b1d39706f441d3f209.tar.gz
some stylesheet improvements for the table, also add a bit more border
between items to avoid them running together in some cases
Diffstat (limited to 'templates/recentchanges.tmpl')
-rw-r--r--templates/recentchanges.tmpl18
1 files changed, 8 insertions, 10 deletions
diff --git a/templates/recentchanges.tmpl b/templates/recentchanges.tmpl
index fe01822da..250e5de51 100644
--- a/templates/recentchanges.tmpl
+++ b/templates/recentchanges.tmpl
@@ -22,18 +22,18 @@
<table border="1" frame="border" rules="groups">
<thead>
<tr class="changeheader">
- <th align="left">user</th>
- <th align="left">time</th>
- <th align="left" colspan="2">changes</th>
+ <th class="changeheader" align="left">user</th>
+ <th class="changeheader" align="left">time</th>
+ <th class="changeheader" align="left" colspan="2">changes</th>
</tr>
</thead>
<tbody>
<TMPL_LOOP NAME="CHANGELOG">
<!-- <TMPL_VAR NAME="REV"> -->
- <tr class="changeheader">
- <td><TMPL_VAR NAME="USER"></td>
+ <tr class="changeinfo">
+ <td class="changeinfo"><TMPL_VAR NAME="USER"></td>
<td class="changetime"><TMPL_VAR NAME="WHEN"></td>
- <td>
+ <td class="changeinfo">
<TMPL_LOOP NAME="PAGES">
<TMPL_IF NAME="DIFFURL">
<a href="<TMPL_VAR NAME="DIFFURL">">
@@ -45,17 +45,15 @@
</TMPL_IF>
</TMPL_LOOP>
</td>
- <td><TMPL_VAR NAME="COMMITTYPE"></td>
+ <td class="changeinfo"><TMPL_VAR NAME="COMMITTYPE"></td>
</tr>
<tr>
- <td colspan="4">
- <i>
+ <td class="changelog" colspan="4">
<TMPL_LOOP NAME="MESSAGE">
<TMPL_IF NAME="LINE">
<TMPL_VAR NAME="LINE"><br />
</TMPL_IF>
</TMPL_LOOP>
- </i>
</td>
</tr>
</TMPL_LOOP>