1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-28 01:10:51 +01:00

Quickfix of CSS issues for boardlist.

#467 - Added missing HTML for noJS users.
#467 - Added additional CSS for FireFox fixes.

Signed-off-by: 8n-tech <8n-tech@users.noreply.github.com>
This commit is contained in:
8n-tech 2015-04-21 11:33:04 +10:00
parent 3de0e897be
commit 97ae37651f
2 changed files with 11 additions and 4 deletions

View File

@ -1457,6 +1457,10 @@ table.board-list-table .board-cell {
overflow: hidden;
text-overflow: ellipsis;
}
table.board-list-table .board-cell::after {
content: ' ';
clear: both;
}
table.board-list-table .board-meta {
padding-right: 4px;
@ -1500,7 +1504,10 @@ table.board-list-table .board-tags .board-cell:hover {
table.board-list-table tr:nth-of-type( even ) .board-tags .board-cell {
background: #D6DAF0;
}
table.board-list-table .board-uri a {
display: inline-block;
float: left;
}
table.board-list-table .board-uri .board-nsfw {
color: rgb(230,0,0);
margin: 0 0 0 0.6em;

View File

@ -6,9 +6,9 @@
{% if board['sfw'] %}<i class="fa fa-briefcase board-sfw" title="SFW"></i>{% endif %}
</p></td>
<td class="board-title"><p class="board-cell" title="Created {{board['time']}}">{{board['title']|e}}</p></td>
<td class="board-pph"><p class="board-cell">{{board['pph']}}</td>
<td class="board-unique"><p class="board-cell">{{board['active']}}</td>
<td class="board-pph"><p class="board-cell board-pph-desc" title="{{board['pph']}} made in the last hour, {{board['pph_average']}} on average">{{board['pph']}}</p></td>
<td class="board-unique"><p class="board-cell">{{board['active']}}</p></td>
<td class="board-tags"><p class="board-cell">{% for tag in board.tags %}<a class="tag-link" href="{{tag_query}}{{tag|e}}">{{tag|e}}</a>{% endfor %}</p></td>
<td class="board-max"><p class="board-cell">{{board['posts_total']}}</td>
<td class="board-max"><p class="board-cell">{{board['posts_total']}}</p></td>
</tr>
{% endfor %}