From 950c49f7bf637e37e64db20a078d82256251716d Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Tue, 27 Aug 2024 16:57:17 -0700 Subject: [PATCH] Closes #7820 - Fix 0 opacity fill in theme constants files for Gauge type needle. --- src/styles/_constants-espresso.scss | 2 +- src/styles/_constants-maelstrom.scss | 2 +- src/styles/_constants-snow.scss | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/styles/_constants-espresso.scss b/src/styles/_constants-espresso.scss index 3abae3f1dc2..36702317a57 100644 --- a/src/styles/_constants-espresso.scss +++ b/src/styles/_constants-espresso.scss @@ -461,7 +461,7 @@ $colorGaugeMeterTextValue: $colorGaugeTextValue; // Meter text value, overlaid o $colorGaugeRange: $colorBodyFg; // Range text color $colorGaugeLimitHigh: rgba($colorLimitRedBg, 0.4); $colorGaugeLimitLow: $colorGaugeLimitHigh; -$colorGaugeNeedle: rgba(#fff, 0); +$colorGaugeNeedle: $colorGaugeValue; // Color of needle in a needle gauge. $transitionTimeGauge: 150ms; // CSS transition time used to smooth needle gauge and meter value transitions $marginGaugeMeterValue: 10%; // Margin between meter value bar and bounds edges $gaugeMeterValueShadow: rgba(255, 255, 255, 0); diff --git a/src/styles/_constants-maelstrom.scss b/src/styles/_constants-maelstrom.scss index 8935dfb65b3..b0f2999174c 100644 --- a/src/styles/_constants-maelstrom.scss +++ b/src/styles/_constants-maelstrom.scss @@ -477,7 +477,7 @@ $colorGaugeMeterTextValue: $colorGaugeTextValue; // Meter text value, overlaid o $colorGaugeRange: $colorBodyFg; // Range text color $colorGaugeLimitHigh: rgba($colorLimitRedBg, 0.4); $colorGaugeLimitLow: $colorGaugeLimitHigh; -$colorGaugeNeedle: rgba(#fff, 0); +$colorGaugeNeedle: $colorGaugeValue; // Color of needle in a needle gauge. $transitionTimeGauge: 150ms; // CSS transition time used to smooth needle gauge and meter value transitions $marginGaugeMeterValue: 10%; // Margin between meter value bar and bounds edges $gaugeMeterValueShadow: rgba(255, 255, 255, 0); diff --git a/src/styles/_constants-snow.scss b/src/styles/_constants-snow.scss index 3bc73d0184f..4b4efdb52bf 100644 --- a/src/styles/_constants-snow.scss +++ b/src/styles/_constants-snow.scss @@ -460,7 +460,7 @@ $colorGaugeMeterTextValue: $colorGaugeTextValue; // Meter text value, overlaid o $colorGaugeRange: $colorBodyFg; // Range text color $colorGaugeLimitHigh: rgba($colorLimitRedBg, 0.2); $colorGaugeLimitLow: $colorGaugeLimitHigh; -$colorGaugeNeedle: rgba(#fff, 0); +$colorGaugeNeedle: $colorGaugeValue; // Color of needle in a needle gauge. $transitionTimeGauge: 150ms; // CSS transition time used to smooth needle gauge and meter value transitions $marginGaugeMeterValue: 10%; // Margin between meter value bar and bounds edges $gaugeMeterValueShadow: rgba(255, 255, 255, 0);