mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-20 10:34:30 +00:00
templates: Use SVG icons for apps page and shortcuts
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
parent
a931bf3fc5
commit
b6325073c5
@ -42,7 +42,7 @@
|
|||||||
{% if 'fa-' in item.icon %}
|
{% if 'fa-' in item.icon %}
|
||||||
<span class="fa {{ item.icon }}"></span>
|
<span class="fa {{ item.icon }}"></span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<img src="{% static 'theme/icons/' %}{{ item.icon }}.png"/>
|
<img src="{% static 'theme/icons/' %}{{ item.icon }}.svg"/>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="card-description">{{ item.short_description}}</div>
|
<div class="card-description">{{ item.short_description}}</div>
|
||||||
@ -68,7 +68,7 @@
|
|||||||
{% if 'fa-' in item.icon %}
|
{% if 'fa-' in item.icon %}
|
||||||
<span class="fa {{ item.icon }}"></span>
|
<span class="fa {{ item.icon }}"></span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<img src="{% static 'theme/icons/' %}{{ item.icon }}.png"/>
|
<img src="{% static 'theme/icons/' %}{{ item.icon }}.svg"/>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="card-description">{{ item.short_description}}</div>
|
<div class="card-description">{{ item.short_description}}</div>
|
||||||
|
|||||||
@ -83,7 +83,7 @@
|
|||||||
{% if "custom" in shortcut.icon %}
|
{% if "custom" in shortcut.icon %}
|
||||||
<img src="{{ shortcut.icon }}"/>
|
<img src="{{ shortcut.icon }}"/>
|
||||||
{% else %}
|
{% else %}
|
||||||
<img src="{% static 'theme/icons/' %}{{ shortcut.icon }}.png"/>
|
<img src="{% static 'theme/icons/' %}{{ shortcut.icon }}.svg"/>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="card-description">
|
<div class="card-description">
|
||||||
|
|||||||
@ -392,6 +392,11 @@ a.menu_link_active {
|
|||||||
background-size: 150% 25%;
|
background-size: 150% 25%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.card-icon img {
|
||||||
|
width: 128px;
|
||||||
|
height: 128px;
|
||||||
|
}
|
||||||
|
|
||||||
.card-icon span {
|
.card-icon span {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user