2021-03-21 10:50:35 +01:00
|
|
|
<!--
|
2021-04-13 11:02:41 +02:00
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
2021-03-21 10:50:35 +01:00
|
|
|
-->
|
2021-09-30 11:18:10 +02:00
|
|
|
<script lang="ts"></script>
|
|
|
|
|
|
|
|
<path class="cumulative-overlay" />
|
|
|
|
|
2021-03-21 10:50:35 +01:00
|
|
|
<style lang="scss">
|
2021-03-21 11:18:05 +01:00
|
|
|
:global(:root) {
|
|
|
|
--area-fill: #000000;
|
|
|
|
--area-fill-opacity: 0.03;
|
|
|
|
--area-stroke: #000000;
|
|
|
|
--area-stroke-opacity: 0.08;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(:root[class*="night-mode"]) {
|
|
|
|
--area-fill: #ffffff;
|
|
|
|
--area-fill-opacity: 0.08;
|
|
|
|
--area-stroke: #000000;
|
|
|
|
--area-stroke-opacity: 0.18;
|
|
|
|
}
|
|
|
|
|
2021-03-21 10:50:35 +01:00
|
|
|
.cumulative-overlay {
|
|
|
|
pointer-events: none;
|
|
|
|
fill: var(--area-fill);
|
|
|
|
fill-opacity: var(--area-fill-opacity);
|
|
|
|
stroke: var(--area-stroke);
|
|
|
|
stroke-opacity: var(--area-stroke-opacity);
|
|
|
|
}
|
|
|
|
</style>
|