]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Add icon for public share link 2240/head
authorNicolas Lœuillet <nicolas@loeuillet.org>
Thu, 25 Aug 2016 14:19:21 +0000 (16:19 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Thu, 25 Aug 2016 14:19:21 +0000 (16:19 +0200)
app/Resources/static/themes/material/css/main.css
src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig

index cade37f634f79d6744ded02292a8bb1c3055c7b6..b81335eb8257275feb2ba27649f4ca979ff4cbab 100755 (executable)
@@ -630,6 +630,10 @@ main ul.row {
   content: "\eae6";
 }
 
+.icon-link::before {
+    content: "\e9cb";
+}
+
 footer [class^="icon-"],
 footer [class*=" icon-"] {
   font-size: 2em;
index 05bb378d33aeb0c60f3549051915b239359f4bf9..eb5d88e36e48ee7caa1478f79255ac19a205fd88 100644 (file)
                 <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>