From 4ab1d6c5bb7e7a3f8d3f034f712432815fe7730b Mon Sep 17 00:00:00 2001 From: Owen Buckley Date: Tue, 18 Nov 2025 10:22:36 -0500 Subject: [PATCH] enhancement: use copy cursor for copy to clipboard interactions --- src/components/copy-to-clipboard-block/ctc-block.css | 6 +++--- src/components/copy-to-clipboard-button/ctc-button.css | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/copy-to-clipboard-block/ctc-block.css b/src/components/copy-to-clipboard-block/ctc-block.css index c0628b34..30cf2de1 100644 --- a/src/components/copy-to-clipboard-block/ctc-block.css +++ b/src/components/copy-to-clipboard-block/ctc-block.css @@ -43,7 +43,7 @@ right: 10px; width: 40px; vertical-align: middle; - cursor: pointer; + cursor: copy; } & .copy-icon svg { @@ -63,7 +63,7 @@ right: 10px; width: 40px; vertical-align: middle; - cursor: pointer; + cursor: copy; } & .copy-icon svg { @@ -109,7 +109,7 @@ right: 10px; width: 40px; vertical-align: middle; - cursor: pointer; + cursor: copy; } & .copy-icon svg { diff --git a/src/components/copy-to-clipboard-button/ctc-button.css b/src/components/copy-to-clipboard-button/ctc-button.css index 7487a554..e304e61b 100644 --- a/src/components/copy-to-clipboard-button/ctc-button.css +++ b/src/components/copy-to-clipboard-button/ctc-button.css @@ -1,7 +1,7 @@ #icon { padding: var(--size-2); border: none; - cursor: pointer; + cursor: copy; border-radius: var(--radius-3); background-color: var(--color-green-pale); }