Merge pull request #2240 from wallabag/add-icon-public-share

Add icon for public share link
This commit is contained in:
Jeremy Benoist 2016-08-26 12:14:36 +02:00 committed by GitHub
commit c4da9d1cd8
2 changed files with 5 additions and 1 deletions

View file

@ -630,6 +630,10 @@ main ul.row {
content: "\eae6";
}
.icon-link::before {
content: "\e9cb";
}
footer [class^="icon-"],
footer [class*=" icon-"] {
font-size: 2em;

View file

@ -101,7 +101,7 @@
<ul>
{% if craue_setting('share_public') %}
<li>
<a href="{{ path('share', {'id': entry.id }) }}" target="_blank" class="tool public" title="{{ 'entry.view.left_menu.public_link'|trans }}">
<a href="{{ path('share', {'id': entry.id }) }}" target="_blank" class="public icon-link" title="{{ 'entry.view.left_menu.public_link'|trans }}">
<span>{{ 'entry.view.left_menu.public_link'|trans }}</span>
</a>
</li>