mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
19 lines
404 B
Svelte
19 lines
404 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;
|
|
|
|
&:hover {
|
|
fill: grey;
|
|
opacity: 0.05;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<g class="hover-columns" />
|