fixes bug #471
This commit is contained in:
parent
dca5b06d29
commit
18e1efac47
6 changed files with 4 additions and 4 deletions
|
@ -81,7 +81,7 @@
|
|||
background-image: url(../img/icon/sticky-closed.png);
|
||||
}
|
||||
.closed-topic a {
|
||||
color: #aaa;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 302 B After Width: | Height: | Size: 287 B |
Binary file not shown.
Before Width: | Height: | Size: 478 B After Width: | Height: | Size: 478 B |
|
@ -45,7 +45,7 @@
|
|||
<div class="nosize"><!-- --></div>
|
||||
</div>
|
||||
|
||||
<div {% if topic.sticky %}class="sticky{% if topic.closed %} closed{% endif %}"{% else %}{% if topic.closed %}class="closed"{% else %}{% if topic|has_unreads:user %}class="inew"{% else %}class="forumicon"{% endif %}{% endif %}{% endif %}><div class="nosize"><!-- --></div></div>
|
||||
<div {% if topic.sticky %}class="isticky{% if topic.closed %} iclosed{% endif %}"{% else %}{% if topic.closed %}class="iclosed"{% else %}{% if topic|has_unreads:user %}class="inew"{% else %}class="forumicon"{% endif %}{% endif %}{% endif %}><div class="nosize"><!-- --></div></div>
|
||||
<div class="tclcon{% if topic.closed %} closed-topic{% endif %}">
|
||||
{% if topic.sticky %}
|
||||
{% trans "Sticky:" %}
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
<tr>
|
||||
<td class="tcl">
|
||||
<div class="intd">
|
||||
<div {% if topic.sticky %}class="sticky"{% else %}{% if topic.closed %}class="closed"{% else %}{% if topic|has_unreads:user %}class="inew"{% else %}class="forumicon"{% endif %}{% endif %}{% endif %}><div class="nosize"><!-- --></div></div>
|
||||
<div {% if topic.sticky %}class="isticky{% if topic.closed %} iclosed{% endif %}"{% else %}{% if topic.closed %}class="iclosed"{% else %}{% if topic|has_unreads:user %}class="inew"{% else %}class="forumicon"{% endif %}{% endif %}{% endif %}><div class="nosize"><!-- --></div></div>
|
||||
<div class="tclcon">
|
||||
{% if topic.sticky %}
|
||||
{% trans "Sticky:" %}
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<tr>
|
||||
<td class="tcl">
|
||||
<div class="intd">
|
||||
<div {% if topic.sticky %}class="sticky{% if topic.closed %} closed{% endif %}"{% else %}{% if topic.closed %}class="closed"{% else %}{% if topic|has_unreads:user %}class="inew"{% else %}class="forumicon"{% endif %}{% endif %}{% endif %}><div class="nosize"><!-- --></div></div>
|
||||
<div {% if topic.sticky %}class="isticky{% if topic.closed %} iclosed{% endif %}"{% else %}{% if topic.closed %}class="iclosed"{% else %}{% if topic|has_unreads:user %}class="inew"{% else %}class="forumicon"{% endif %}{% endif %}{% endif %}><div class="nosize"><!-- --></div></div>
|
||||
<div class="tclcon">
|
||||
<h3 {% if not topic|has_unreads:user %}class="topic_isread"{% endif %}>{% link topic %}</h3>
|
||||
<span class="byuser">{% trans "by" %} {{ topic.user.username }}</span>
|
||||
|
|
Reference in a new issue