mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-23 08:06:33 +00:00
fix icons
This commit is contained in:
parent
9f7d154e34
commit
46d78f87d9
4 changed files with 10 additions and 11 deletions
|
@ -71,6 +71,7 @@
|
||||||
font-variant: normal;
|
font-variant: normal;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
|
background-size: 24px;
|
||||||
|
|
||||||
/* Enable Ligatures ================ */
|
/* Enable Ligatures ================ */
|
||||||
letter-spacing: 0;
|
letter-spacing: 0;
|
||||||
|
@ -87,7 +88,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-image {
|
.icon-image {
|
||||||
background-size: 16px;
|
background-size: 24px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
padding-right: 1em !important;
|
padding-right: 1em !important;
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
|
|
||||||
<li class="bold border-bottom hide-on-med-and-down">
|
<li class="bold border-bottom hide-on-med-and-down">
|
||||||
<a class="waves-effect collapsible-header" href="{{ entry.url|e }}">
|
<a class="waves-effect collapsible-header" href="{{ entry.url|e }}">
|
||||||
<i class="material-icons small">public</i>
|
<i class="material-icons small">link</i>
|
||||||
<span>{{ 'entry.view.left_menu.view_original_article'|trans }}</span>
|
<span>{{ 'entry.view.left_menu.view_original_article'|trans }}</span>
|
||||||
</a>
|
</a>
|
||||||
<div class="collapsible-body"></div>
|
<div class="collapsible-body"></div>
|
||||||
|
@ -106,14 +106,12 @@
|
||||||
<ul>
|
<ul>
|
||||||
{% if craue_setting('share_public') %}
|
{% if craue_setting('share_public') %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ path('share', {'id': entry.id }) }}" target="_blank" title="{{ 'entry.view.left_menu.public_link'|trans }}">
|
<a href="{{ path('share', {'id': entry.id }) }}" target="_blank" title="{{ 'entry.view.left_menu.public_link'|trans }}" class="tool icon icon-eye">
|
||||||
<i class="material-icons">link</i>
|
|
||||||
<span>{{ 'entry.view.left_menu.public_link'|trans }}</span>
|
<span>{{ 'entry.view.left_menu.public_link'|trans }}</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ path('delete_share', {'id': entry.id }) }}" class="tool" title="{{ 'entry.view.left_menu.delete_public_link'|trans }}">
|
<a href="{{ path('delete_share', {'id': entry.id }) }}" title="{{ 'entry.view.left_menu.delete_public_link'|trans }}" class="tool icon icon-no-eye">
|
||||||
<i class="material-icons">remove_circle</i>
|
|
||||||
<span>{{ 'entry.view.left_menu.delete_public_link'|trans }}</span>
|
<span>{{ 'entry.view.left_menu.delete_public_link'|trans }}</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -128,21 +126,21 @@
|
||||||
{% if craue_setting('share_shaarli') %}
|
{% if craue_setting('share_shaarli') %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ craue_setting('shaarli_url') }}/index.php?post={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" class="tool icon-image icon-image--shaarli" title="shaarli">
|
<a href="{{ craue_setting('shaarli_url') }}/index.php?post={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" class="tool icon-image icon-image--shaarli" title="shaarli">
|
||||||
shaarli
|
<span>shaarli</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if craue_setting('share_diaspora') %}
|
{% if craue_setting('share_diaspora') %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ craue_setting('diaspora_url') }}/bookmarklet?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}¬es=&v=1&noui=1&jump=doclose" target="_blank" class="tool diaspora icon-image icon-image--diaspora" title="diaspora">
|
<a href="{{ craue_setting('diaspora_url') }}/bookmarklet?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}¬es=&v=1&noui=1&jump=doclose" target="_blank" class="tool diaspora icon-image icon-image--diaspora" title="diaspora">
|
||||||
diaspora*
|
<span>diaspora*</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if craue_setting('carrot') %}
|
{% if craue_setting('carrot') %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://secure.carrot.org/GiveAndGetBack.do?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" title="carrot" class="tool carrot icon-image icon-image--carrot">
|
<a href="https://secure.carrot.org/GiveAndGetBack.do?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" title="carrot" class="tool carrot icon-image icon-image--carrot">
|
||||||
Carrot
|
<span>Carrot</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue