diff options
| author | bobzel <zzzman@gmail.com> | 2023-04-07 10:57:34 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-04-07 10:57:34 -0400 |
| commit | 893c48e17c3285613c9c3fa4e84d4d3317ee2772 (patch) | |
| tree | 12d7638aa5b8e6ae1b36a84e6ca5e8d36ed69e33 /src/client/views/nodes/DataVizBox/components/Chart.scss | |
| parent | 986c5bdc899954c4609f71405d3334147be721fe (diff) | |
updated linechart highlighting
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/Chart.scss')
| -rw-r--r-- | src/client/views/nodes/DataVizBox/components/Chart.scss | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/Chart.scss b/src/client/views/nodes/DataVizBox/components/Chart.scss index c8daf7c90..56fcb1fcf 100644 --- a/src/client/views/nodes/DataVizBox/components/Chart.scss +++ b/src/client/views/nodes/DataVizBox/components/Chart.scss @@ -4,29 +4,34 @@ height: fit-content; } -.highlight { - // change the color of the circle element to be red - fill: red; -} -.focus-selected, +.hoverHighlight-selected, .selected { // change the color of the circle element to be red - fill: lightblue; + fill: transparent; + outline: lightblue solid 2px; + border-radius: 100%; position: absolute; transform-box: fill-box; - scale: 2; transform-origin: center; } -.focus { +.hoverHighlight { fill: transparent; outline: black solid 1px; border-radius: 100%; } -.focus-selected { +.hoverHighlight-selected { + fill: transparent; scale: 1; outline: black solid 1px; border-radius: 100%; } +.datapoint { + fill: black; +} +.brushed { + // change the color of the circle element to be red + fill: red; +} .chart-container { display: flex; flex-direction: column; |
