Skip to content

Commit

Permalink
Fix forum table header text color
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed Apr 15, 2024
1 parent d5915df commit e9c6017
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions system/templates/forum.boards.html.twig
@@ -1,24 +1,26 @@
<b>Boards</b>
<table width="100%">
<thead>
<tr bgcolor="{{ config.vdarkborder }}" class="white">
<td>
<th>
<span style="font-size: 10px"><b>Board</b></span>
</td>
<td>
</th>
<th>
<span style="font-size: 10px"><b>Posts</b></span>
</td>
<td>
</th>
<th>
<span style="font-size: 10px"><b>Threads</b></span>
</td>
<td align="center">
</th>
<th align="center">
<span style="font-size: 10px"><b>Last Post</b></span>
</td>
</th>
{% if canEdit %}
<td>
<th>
<span style="font-size: 10px"><b>Options</b></span>
</td>
</th>
{% endif %}
</tr>
</thead>
{% set i = 0 %}
{% for board in boards %}
{% set i = i + 1 %}
Expand Down

0 comments on commit e9c6017

Please sign in to comment.