mirror of
https://github.com/nasa/openmct.git
synced 2025-01-29 15:43:52 +00:00
Fix plot axis separator line color and hash colors (#3314)
* Fixes for NIRVSS UI spectral plot view - Fixes Y axis 2 vertical line color in spectral plot; * Fixes for NIRVSS UI spectral plot view - Fixes Y axis 2 vertical line color in spectral plot; - Tweaks to themed plot hash line colors;
This commit is contained in:
parent
b4d1cdaae8
commit
9e8f845fbe
@ -351,7 +351,7 @@ $colorSummaryFgEm: $colorBodyFg;
|
||||
// Plot
|
||||
$colorPlotBg: rgba(black, 0.1);
|
||||
$colorPlotFg: $colorBodyFg;
|
||||
$colorPlotHash: black;
|
||||
$colorPlotHash: $colorPlotFg;
|
||||
$opacityPlotHash: 0.2;
|
||||
$stylePlotHash: dashed;
|
||||
$colorPlotAreaBorder: $colorInteriorBorder;
|
||||
|
@ -351,8 +351,8 @@ $colorSummaryFgEm: white;
|
||||
// Plot
|
||||
$colorPlotBg: rgba(black, 0.05);
|
||||
$colorPlotFg: $colorBodyFg;
|
||||
$colorPlotHash: black;
|
||||
$opacityPlotHash: 0.2;
|
||||
$colorPlotHash: $colorPlotFg;
|
||||
$opacityPlotHash: 0.3;
|
||||
$stylePlotHash: dashed;
|
||||
$colorPlotAreaBorder: $colorInteriorBorder;
|
||||
$colorPlotLabelFg: pushBack($colorPlotFg, 20%);
|
||||
|
@ -41,7 +41,8 @@
|
||||
}
|
||||
|
||||
path.xy2-y {
|
||||
stroke: $colorPlotHash !important;
|
||||
stroke: $colorPlotHash !important; // Using this instead of $colorPlotAreaBorder because that is an rgba
|
||||
opacity: $opacityPlotHash !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user