From 73e73229dbcb1835f627fa0d9bd0ca9136f466d4 Mon Sep 17 00:00:00 2001 From: Michael Lange Date: Wed, 5 Aug 2020 11:53:14 -0700 Subject: [PATCH] Use the correct gray for the info details --- ui/app/styles/core/icon.scss | 5 +++++ ui/app/templates/components/scale-events-chart.hbs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ui/app/styles/core/icon.scss b/ui/app/styles/core/icon.scss index 9a98c0409..1b4fc00a2 100644 --- a/ui/app/styles/core/icon.scss +++ b/ui/app/styles/core/icon.scss @@ -46,4 +46,9 @@ $icon-dimensions-large: 2rem; color: $color; } } + + &.is-grey { + fill: $grey; + color: $grey; + } } diff --git a/ui/app/templates/components/scale-events-chart.hbs b/ui/app/templates/components/scale-events-chart.hbs index 7744f7447..abd0ddebd 100644 --- a/ui/app/templates/components/scale-events-chart.hbs +++ b/ui/app/templates/components/scale-events-chart.hbs @@ -14,7 +14,7 @@ {{#if this.activeEvent.event.error}} {{x-icon "cancel-circle-fill" class="is-danger"}} {{else}} - {{x-icon "info-circle-fill" class="is-dark"}} + {{x-icon "info-circle-fill" class="is-grey"}} {{/if}}