Skip to content
Snippets Groups Projects
Commit 59b2aa1e authored by Vaibhav Mule's avatar Vaibhav Mule Committed by Fredrik Jonsson
Browse files

add class for grey color

parent 8bb1940a
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
<li><strong>{{action.grouper}}</strong>
<ul>
{% for reminder in action.list %}
<li {% if reminder.is_expired %}style="color:grey;"{% endif %}>
<li class="{% if reminder.is_expired %}expired-reminder{% endif %}">
{{reminder.time_with_format}}
<a class="link" href="{% url 'funds:submissions:reminders:delete' object.id reminder.id %}">
Delete
......
.expired-reminder {
color: $color--mid-dark-grey;
}
......@@ -62,6 +62,7 @@
@import 'components/funding-block';
@import 'components/data-block';
@import 'components/invoice-block';
@import 'components/reminder-sidebar';
// Layout
@import 'layout/header';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment