Skip to content

Commit 950c49f

Browse files
committed
Closes #7820
- Fix 0 opacity fill in theme constants files for Gauge type needle.
1 parent 21a4335 commit 950c49f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/styles/_constants-espresso.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ $colorGaugeMeterTextValue: $colorGaugeTextValue; // Meter text value, overlaid o
461461
$colorGaugeRange: $colorBodyFg; // Range text color
462462
$colorGaugeLimitHigh: rgba($colorLimitRedBg, 0.4);
463463
$colorGaugeLimitLow: $colorGaugeLimitHigh;
464-
$colorGaugeNeedle: rgba(#fff, 0);
464+
$colorGaugeNeedle: $colorGaugeValue; // Color of needle in a needle gauge.
465465
$transitionTimeGauge: 150ms; // CSS transition time used to smooth needle gauge and meter value transitions
466466
$marginGaugeMeterValue: 10%; // Margin between meter value bar and bounds edges
467467
$gaugeMeterValueShadow: rgba(255, 255, 255, 0);

src/styles/_constants-maelstrom.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ $colorGaugeMeterTextValue: $colorGaugeTextValue; // Meter text value, overlaid o
477477
$colorGaugeRange: $colorBodyFg; // Range text color
478478
$colorGaugeLimitHigh: rgba($colorLimitRedBg, 0.4);
479479
$colorGaugeLimitLow: $colorGaugeLimitHigh;
480-
$colorGaugeNeedle: rgba(#fff, 0);
480+
$colorGaugeNeedle: $colorGaugeValue; // Color of needle in a needle gauge.
481481
$transitionTimeGauge: 150ms; // CSS transition time used to smooth needle gauge and meter value transitions
482482
$marginGaugeMeterValue: 10%; // Margin between meter value bar and bounds edges
483483
$gaugeMeterValueShadow: rgba(255, 255, 255, 0);

src/styles/_constants-snow.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ $colorGaugeMeterTextValue: $colorGaugeTextValue; // Meter text value, overlaid o
460460
$colorGaugeRange: $colorBodyFg; // Range text color
461461
$colorGaugeLimitHigh: rgba($colorLimitRedBg, 0.2);
462462
$colorGaugeLimitLow: $colorGaugeLimitHigh;
463-
$colorGaugeNeedle: rgba(#fff, 0);
463+
$colorGaugeNeedle: $colorGaugeValue; // Color of needle in a needle gauge.
464464
$transitionTimeGauge: 150ms; // CSS transition time used to smooth needle gauge and meter value transitions
465465
$marginGaugeMeterValue: 10%; // Margin between meter value bar and bounds edges
466466
$gaugeMeterValueShadow: rgba(255, 255, 255, 0);

0 commit comments

Comments
 (0)