1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 22:05:09 +01:00

Don't use card title, use the smaller normal text

This commit is contained in:
2016-07-19 15:41:54 +02:00
parent 5c61d0c142
commit e6ec1727e4
2 changed files with 8 additions and 10 deletions

View File

@@ -30,7 +30,7 @@
/* Card title anchor colour */ /* Card title anchor colour */
.white-text .card-title a, .white-text .card-title a,
.white-text .card-title .white-text a
{ {
color: #FFF; color: #FFF;
} }

View File

@@ -16,15 +16,13 @@
#} #}
<div class="card green darken-3"> <div class="card green darken-3">
<div class="card-content white-text"> <div class="card-content white-text">
<span class="card-title"> <a href="{{ bookmark.url }}" title="{{ bookmark.url }}">
<a href="{{ bookmark.url }}" title="{{ bookmark.url }}"> {% if bookmark.title %}
{% if bookmark.title %} {{ bookmark.title }}
{{ bookmark.title }} {% else %}
{% else %} [ no title ]
[ no title ] {% endif %}
{% endif %} </a>
</a>
</span>
</div> </div>
<div class="card-reveal green darken-3"> <div class="card-reveal green darken-3">
<span class="card-title white-text">{{ bookmark.title }}</span> <span class="card-title white-text">{{ bookmark.title }}</span>