mirror of
https://github.com/nasa/openmct.git
synced 2025-02-06 11:09:21 +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
|
// Plot
|
||||||
$colorPlotBg: rgba(black, 0.1);
|
$colorPlotBg: rgba(black, 0.1);
|
||||||
$colorPlotFg: $colorBodyFg;
|
$colorPlotFg: $colorBodyFg;
|
||||||
$colorPlotHash: black;
|
$colorPlotHash: $colorPlotFg;
|
||||||
$opacityPlotHash: 0.2;
|
$opacityPlotHash: 0.2;
|
||||||
$stylePlotHash: dashed;
|
$stylePlotHash: dashed;
|
||||||
$colorPlotAreaBorder: $colorInteriorBorder;
|
$colorPlotAreaBorder: $colorInteriorBorder;
|
||||||
|
@ -351,8 +351,8 @@ $colorSummaryFgEm: white;
|
|||||||
// Plot
|
// Plot
|
||||||
$colorPlotBg: rgba(black, 0.05);
|
$colorPlotBg: rgba(black, 0.05);
|
||||||
$colorPlotFg: $colorBodyFg;
|
$colorPlotFg: $colorBodyFg;
|
||||||
$colorPlotHash: black;
|
$colorPlotHash: $colorPlotFg;
|
||||||
$opacityPlotHash: 0.2;
|
$opacityPlotHash: 0.3;
|
||||||
$stylePlotHash: dashed;
|
$stylePlotHash: dashed;
|
||||||
$colorPlotAreaBorder: $colorInteriorBorder;
|
$colorPlotAreaBorder: $colorInteriorBorder;
|
||||||
$colorPlotLabelFg: pushBack($colorPlotFg, 20%);
|
$colorPlotLabelFg: pushBack($colorPlotFg, 20%);
|
||||||
|
@ -41,7 +41,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
path.xy2-y {
|
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