reverse is to be used when a driver needs to shift into hyperspeed
This commit is contained in:
parent
316ec49a83
commit
3c228f3abb
2 changed files with 6 additions and 1 deletions
|
@ -954,3 +954,8 @@ a:active {
|
|||
line-height: 1.2em;
|
||||
min-width: 200px;
|
||||
}
|
||||
|
||||
.forums .forumListing .forumCategory .forumSubSubforums {
|
||||
display: block;
|
||||
list-style: none;
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
{% if forum.forums|length %}
|
||||
<ul class="forumSubSubforums">
|
||||
{% for forum in forum.forums %}
|
||||
<li><a href="{% if forum.type == 2 %}{{ forum.link }}{% else %}{{ urls.format('FORUM_SUB', [forum.id]) }}{% endif %}" class="default">{{ forum.name }}</a></li>
|
||||
<li><a href="{% if forum.type == 2 %}{{ forum.link }}{% else %}{{ urls.format('FORUM_SUB', [forum.id]) }}{% endif %}" class="default"><span class="fa {% if forum.icon %}{{ forum.icon }}{% else %}fa-bars{% endif %}"></span> {{ forum.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
|
|
Reference in a new issue