mirror of https://github.com/wallabag/wallabag.git
Tag delete style action updated
This commit is contained in:
parent
086b3dda88
commit
e55cb639fc
|
@ -211,6 +211,10 @@ a.original:not(.waves-effect) {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.card-tag-delete {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.card-tag-labels {
|
.card-tag-labels {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
||||||
|
|
|
@ -457,6 +457,8 @@ quickstart:
|
||||||
email: By email
|
email: By email
|
||||||
gitter: On Gitter
|
gitter: On Gitter
|
||||||
tag:
|
tag:
|
||||||
|
confirm:
|
||||||
|
delete: Delete the %name% tag
|
||||||
page_title: Tags
|
page_title: Tags
|
||||||
list:
|
list:
|
||||||
number_on_the_page: '{0} There are no tags.|{1} There is one tag.|]1,Inf[ There are %count% tags.'
|
number_on_the_page: '{0} There are no tags.|{1} There is one tag.|]1,Inf[ There are %count% tags.'
|
||||||
|
|
|
@ -458,6 +458,8 @@ quickstart:
|
||||||
email: Par courriel
|
email: Par courriel
|
||||||
gitter: Sur Gitter
|
gitter: Sur Gitter
|
||||||
tag:
|
tag:
|
||||||
|
confirm:
|
||||||
|
delete: Supprimer le tag %name%
|
||||||
page_title: Étiquettes
|
page_title: Étiquettes
|
||||||
list:
|
list:
|
||||||
number_on_the_page: '{0} Il n’y a pas d''étiquette.|{1} Il y a une étiquette.|]1,Inf[ Il y a %count% étiquettes.'
|
number_on_the_page: '{0} Il n’y a pas d''étiquette.|{1} Il y a une étiquette.|]1,Inf[ Il y a %count% étiquettes.'
|
||||||
|
|
|
@ -26,8 +26,8 @@
|
||||||
<i class="material-icons">mode_edit</i>
|
<i class="material-icons">mode_edit</i>
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="{{ path('tag_delete', {'slug': tag.slug})}}">
|
<a href="{{ path('tag_delete', {'slug': tag.slug})}}" class="card-tag-icon card-tag-delete" onclick="return confirm('{{ 'tag.confirm.delete'|trans({'%name%': tag.label})|escape('js') }}')">
|
||||||
<i class="material-icons">mode_delete</i>
|
<i class="material-icons">delete</i>
|
||||||
</a>
|
</a>
|
||||||
{% if app.user.config.feedToken %}
|
{% if app.user.config.feedToken %}
|
||||||
<a rel="alternate" type="application/atom+xml" href="{{ path('tag_feed', {'username': app.user.username, 'token': app.user.config.feedToken, 'slug': tag.slug}) }}" class="card-tag-icon"><i class="material-icons">rss_feed</i></a>
|
<a rel="alternate" type="application/atom+xml" href="{{ path('tag_feed', {'username': app.user.username, 'token': app.user.config.feedToken, 'slug': tag.slug}) }}" class="card-tag-icon"><i class="material-icons">rss_feed</i></a>
|
||||||
|
|
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 New Issue