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
1 changed files with 5 additions and 1 deletions

View File

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