better tags on material

This commit is contained in:
Thomas Citharel 2016-10-05 14:06:55 +02:00
parent 645c0d5bce
commit 15f1352ef8
No known key found for this signature in database
GPG key ID: 5780691F5FE48FB5
5 changed files with 17 additions and 7 deletions

View file

@ -445,6 +445,15 @@ main ul.row {
white-space: nowrap; white-space: nowrap;
} }
.card-entry-tags a,
.card-entry-labels a,
.card-entry-labels-hidden a,
#list .chip a {
text-decoration: none;
font-weight: normal;
color: #fff;
}
.card .card-content .estimatedTime { .card .card-content .estimatedTime {
margin-bottom: 10px; margin-bottom: 10px;
} }

View file

@ -17,7 +17,7 @@
<div class="card-image waves-effect waves-block waves-light"> <div class="card-image waves-effect waves-block waves-light">
<ul class="card-entry-labels"> <ul class="card-entry-labels">
{% for tag in entry.tags | slice(0, 3) %} {% for tag in entry.tags | slice(0, 3) %}
<li>{{ tag.label }}</li> <li><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
<div class="preview activator" style="background-image: url({{ entry.previewPicture }})"></div> <div class="preview activator" style="background-image: url({{ entry.previewPicture }})"></div>
@ -46,7 +46,7 @@
<p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p> <p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p>
<ul class="card-entry-labels-hidden"> <ul class="card-entry-labels-hidden">
{% for tag in entry.tags | slice(0, 2) %} {% for tag in entry.tags | slice(0, 2) %}
<li>{{ tag.label }}</li> <li><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}
@ -68,7 +68,7 @@
<ul class="card-entry-labels-hidden"> <ul class="card-entry-labels-hidden">
{% for tag in entry.tags %} {% for tag in entry.tags %}
<li>{{ tag.label }}</li> <li><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>

View file

@ -223,12 +223,13 @@
</span> </span>
<i class="material-icons" title="{{ 'entry.view.created_at'|trans }}">today</i><span class="link">{{ entry.createdAt|date('Y-m-d') }}</span> <i class="material-icons" title="{{ 'entry.view.created_at'|trans }}">today</i><span class="link">{{ entry.createdAt|date('Y-m-d') }}</span>
<a href="{{ entry.url|e }}" target="_blank" title="{{ 'entry.view.original_article'|trans }} : {{ entry.title|e }}" class="tool"> <a href="{{ entry.url|e }}" target="_blank" title="{{ 'entry.view.original_article'|trans }} : {{ entry.title|e }}" class="tool">
<i class="material-icons link">link</i> <span class="link">{{ entry.domainName|removeWww }}</span></a> <i class="material-icons link">link</i> <span class="link">{{ entry.domainName|removeWww }}</span>
</a>
<span class="tool"><i class="material-icons link">comment</i> <span class="link">{{ 'entry.view.annotations_on_the_entry'|transchoice(entry.annotations | length) }}</span> <span class="tool"><i class="material-icons link">comment</i> <span class="link">{{ 'entry.view.annotations_on_the_entry'|transchoice(entry.annotations | length) }}</span>
<div id="list"> <div id="list">
{% for tag in entry.tags %} {% for tag in entry.tags %}
<div class="chip"> <div class="chip">
{{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="material-icons">delete</i></a> <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a> <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="material-icons">delete</i></a>
</div> </div>
{% endfor %} {% endfor %}
</div> </div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long