diff --git a/src/components/comments/Comments.vue b/src/components/comments/Comments.vue index 1d2b679..1393434 100644 --- a/src/components/comments/Comments.vue +++ b/src/components/comments/Comments.vue @@ -367,5 +367,14 @@ function openComment(comment) { cursor: pointer !important; z-index: 999; overflow: visible; + transition: transform 0.1s ease-out; + transform-origin: bottom left; +} +.comment-marker:hover { + transform: scale(1.1); +} +.comment-marker.active, +.comment-marker:focus { + background-image: var(--icon-comment-focus) }