Add custom comment cursor #4

This commit is contained in:
Timothée Goguely 2024-11-19 16:31:38 +01:00
parent fa0801668c
commit 78c09254fa
4 changed files with 18 additions and 18 deletions

View file

@ -355,6 +355,17 @@ function openComment(comment) {
.vpv-pages-inner-container.waiting-comment .page-inner-container,
.vpv-pages-inner-container.waiting-comment .vpv-text-layer-text,
.vpv-pages-inner-container.waiting-comment .vpv-text-layer-wrapper {
cursor: cell !important;
cursor: var(--icon-comment-cursor) -2 28, cell !important;
}
.comment-marker {
position: absolute;
display: block;
width: 1.75rem;
height: 1.75rem;
background: var(--icon-comment-default) no-repeat center / contain;
cursor: pointer !important;
z-index: 999;
overflow: visible;
}
</style>