WIP: API: add icon_url #122

Closed
Anna Sirota wants to merge 5 commits from api-icon-and-featured-image-url into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
3 changed files with 12 additions and 6 deletions
Showing only changes of commit ae83ce7e38 - Show all commits

View File

@ -87,6 +87,10 @@
text-overflow: ellipsis text-overflow: ellipsis
white-space: nowrap white-space: nowrap
&.ext-detail-info-tags
text-overflow: clip
white-space: wrap
dl, dl,
dd:last-child dd:last-child
margin-bottom: 0 margin-bottom: 0

View File

@ -109,7 +109,7 @@
</div> </div>
<div class="dl-row"> <div class="dl-row">
<dd> <dd class="ext-detail-info-tags">
{% if version.tags.count %} {% if version.tags.count %}
{% include "extensions/components/tags.html" with small=True version=version %} {% include "extensions/components/tags.html" with small=True version=version %}
{% else %} {% else %}

View File

@ -219,7 +219,9 @@
{% if latest.tags.count %} {% if latest.tags.count %}
<div class="dl-row"> <div class="dl-row">
<dd>{% include "extensions/components/tags.html" with small=True version=latest %}</dd> <dd class="ext-detail-info-tags">
{% include "extensions/components/tags.html" with small=True version=latest %}
</dd>
</div> </div>
{% endif %} {% endif %}
</dl> </dl>