mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-23 16:10:28 +00:00
Merge pull request #2670 from wallabag/add-floating-button
Added floating button on entry view for mobile
This commit is contained in:
commit
f3a1b896b3
1 changed files with 11 additions and 0 deletions
|
@ -257,6 +257,17 @@
|
|||
<article>
|
||||
{{ entry.content | raw }}
|
||||
</article>
|
||||
|
||||
<div class="fixed-action-btn horizontal click-to-toggle hide-on-large-only">
|
||||
<a class="btn-floating btn-large">
|
||||
<i class="material-icons">menu</i>
|
||||
</a>
|
||||
<ul>
|
||||
<li><a class="btn-floating" href="{{ path('archive_entry', { 'id': entry.id }) }}"><i class="material-icons">done</i></a></li>
|
||||
<li><a class="btn-floating" href="{{ path('star_entry', { 'id': entry.id }) }}"><i class="material-icons">star_outline</i></a></li>
|
||||
<li><a class="btn-floating" href="{{ path('delete_entry', { 'id': entry.id }) }}"><i class="material-icons">delete</i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script id="annotationroutes" type="application/json">
|
||||
|
|
Loading…
Reference in a new issue