20 lines
400 B
Svelte
20 lines
400 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<style lang="scss">
|
|
.hover-columns {
|
|
:global(rect) {
|
|
fill: none;
|
|
pointer-events: all;
|
|
}
|
|
|
|
:global(rect:hover) {
|
|
fill: grey;
|
|
opacity: 0.05;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<g class="hover-columns" />
|