change cursor for anchors

This commit is contained in:
2026-06-14 09:46:55 -04:00
parent 791dd3b0c4
commit 6a0df8a49a
2 changed files with 28 additions and 1 deletions
+16 -1
View File
@@ -205,21 +205,36 @@
width: 20px;
height: 20px;
position: absolute;
pointer-events: none;
}
#top_left_resize {
transform: translateX(-50%) translateY(-50%);
}
#top_left_resize:hover {
cursor: nw-resize !important;
}
#top_right_resize {
transform: translateX(340px) translateY(-50%);
}
#top_right_resize:hover {
cursor: ne-resize !important;
}
#bottom_left_resize {
transform: translateY(340px) translateX(-50%);
}
#bottom_left_resize:hover {
cursor: sw-resize !important;
}
#bottom_right_resize {
transform: translateX(340px) translateY(340px);
}
#bottom_right_resize:hover {
cursor: se-resize !important;
}