From 27eb15fc2d97d2f56250d7c09d07448238a06f66 Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Thu, 10 Jan 2019 13:52:22 -0500 Subject: [PATCH] Show missing invitations as red alerts --- styles/sections/_task_order.scss | 4 ++-- templates/workspaces/task_orders/show.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/styles/sections/_task_order.scss b/styles/sections/_task_order.scss index 9055ed97..ce8f2d7a 100644 --- a/styles/sections/_task_order.scss +++ b/styles/sections/_task_order.scss @@ -119,8 +119,8 @@ @include icon-color($color-green); } .uninvited { - color: $color-gray-light; - @include icon-color($color-gray-light); + color: $color-red; + @include icon-color($color-red); } .task-order-invitation-status__icon { diff --git a/templates/workspaces/task_orders/show.html b/templates/workspaces/task_orders/show.html index 0e39321b..228ffdc7 100644 --- a/templates/workspaces/task_orders/show.html +++ b/templates/workspaces/task_orders/show.html @@ -55,7 +55,7 @@ {% set class = "invited" if officer else "uninvited" %}
- {{ Icon("ok", classes=class) }} + {{ Icon("ok" if officer else "alert", classes=class) }}
{{ title }}