Better design of the close button

This commit is contained in:
Alexandr Danilov 2016-02-10 22:03:02 +03:00 committed by Jeremy Benoist
parent 9b5edf33a0
commit a7c7de4e9b
2 changed files with 5 additions and 1 deletions

View File

@ -395,6 +395,10 @@ main ul.row {
color: #ffffff;
}
#article aside .chip i {
color: #ffffff;
}
/* ==========================================================================
6 = Media queries
========================================================================== */

View File

@ -159,7 +159,7 @@ main {
<div id="list">
{% for tag in entry.tags %}
<div class="chip">
{{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="chip">✘</i></a>
{{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="mdi-navigation-close"></i></a>
</div>
{% endfor %}
</div>