Fix tags separation on new category page
This commit is contained in:
parent
999f52954f
commit
048dea01f4
|
@ -17,9 +17,11 @@
|
||||||
<tr>
|
<tr>
|
||||||
{{category-link topic.category}}
|
{{category-link topic.category}}
|
||||||
{{#if topic.tags}}
|
{{#if topic.tags}}
|
||||||
{{#each topic.visibleListTags as |tag|}}
|
<div class="discourse-tags">
|
||||||
{{discourse-tag tag}}
|
{{#each topic.visibleListTags as |tag|}}
|
||||||
{{/each}}
|
{{discourse-tag tag}}
|
||||||
|
{{/each}}
|
||||||
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</tr>
|
</tr>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -110,6 +110,10 @@ $tag-color: scale-color($primary, $lightness: 40%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.categories-list .topic-list-latest .discourse-tags {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
.mobile-view .topic-list-item .discourse-tags {
|
.mobile-view .topic-list-item .discourse-tags {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
|
Loading…
Reference in New Issue