From 39ec6fa1d06ff819458ee73c256a56b6fd1f4745 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Wed, 16 Dec 2020 11:22:19 +0530 Subject: [PATCH] fix: Add "grey" to keep indicators backward compatible --- frappe/public/scss/desk/indicator.scss | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/frappe/public/scss/desk/indicator.scss b/frappe/public/scss/desk/indicator.scss index 89523a9f09..d8275bb08e 100644 --- a/frappe/public/scss/desk/indicator.scss +++ b/frappe/public/scss/desk/indicator.scss @@ -110,13 +110,17 @@ @include indicator-pill-color('yellow'); } -.indicator.gray { +.indicator.gray, +.indicator.grey { @include indicator-color('gray'); } .indicator-pill.gray, .indicator-pill-right.gray, -.indicator-pill-round.gray { +.indicator-pill-round.gray, +.indicator-pill.grey, +.indicator-pill-right.grey, +.indicator-pill-round.grey { @include indicator-pill-color('light-gray'); }