Fix calendar color styling.

This commit is contained in:
Casper V. Kristensen 2019-10-28 00:30:59 +01:00
parent 74d3b3d3e9
commit f5e3550c28
Signed by: caspervk
GPG key ID: 289CA03790535054
2 changed files with 2 additions and 2 deletions

View file

@ -158,7 +158,7 @@ a.response-status-confirmed-bg:hover, a.response-status-4-bg:hover {
}
a.response-status-no-response-bg:focus, a.response-status-0-bg:focus,
a.response-status-no-response-bg:hover, a.response-status-0-bg:hover {
color: #545b62;
color: #fff;
background-color: #545b62;
}

View file

@ -37,7 +37,7 @@
</span>
{% endfor %}
{% for raid in day.raids %}
<a class="mb-1 badge badge-secondary response-status-{{ raid.max_status | default:0 }}-bg text-left text-wrap font-weight-normal" href="{% url 'raid_detail' raid.id %}">
<a class="mb-1 badge response-status-{{ raid.max_status | default:0 }}-bg text-left text-wrap font-weight-normal" href="{% url 'raid_detail' raid.id %}">
<span class="text-monospace">{{ raid.date.time }}</span> <strong>{{ raid.title }}</strong>
</a>
{% endfor %}