1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00

Fix hidden gutter cell expand icons still having a tooltip

This commit is contained in:
Andrew Kingston 2023-04-25 09:32:06 +01:00
parent 01ada56686
commit 2f97787dfb

View file

@ -113,11 +113,15 @@
}
.expand {
opacity: 0;
pointer-events: none;
margin-right: 4px;
}
.expand :global(.spectrum-Icon) {
pointer-events: none;
}
.expand.visible {
opacity: 1;
}
.expand.visible :global(.spectrum-Icon) {
pointer-events: all;
}
</style>