summary refs log tree commit diff stats
path: root/tools/dochack
diff options
context:
space:
mode:
authorynfle <23086821+ynfle@users.noreply.github.com>2021-10-28 11:02:18 +0300
committerGitHub <noreply@github.com>2021-10-28 10:02:18 +0200
commitc80e2c173686bd12904e5487752dc0ce20cb8bcb (patch)
tree8375da8b393da980edb33a49e2c4c67c83acfcfc /tools/dochack
parentcd2b093d07303aa7bfcb4a007281f56de3755110 (diff)
downloadNim-c80e2c173686bd12904e5487752dc0ce20cb8bcb.tar.gz
Docs: change clipboard cursor type to `pointer` (#19064)
Diffstat (limited to 'tools/dochack')
-rw-r--r--tools/dochack/dochack.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/dochack/dochack.nim b/tools/dochack/dochack.nim
index 83e81f1c0..3a663808d 100644
--- a/tools/dochack/dochack.nim
+++ b/tools/dochack/dochack.nim
@@ -360,6 +360,7 @@ proc copyToClipboard*() {.exportc.} =
           const button = document.createElement("button")
           button.value = e.textContent.replace('...', '') 
           button.classList.add("copyToClipBoardBtn")
+          button.style = "cursor: pointer"
     
           div.appendChild(preTag)
           div.appendChild(button)
@@ -396,4 +397,4 @@ proc copyToClipboard*() {.exportc.} =
     """
     .}
     
-copyToClipboard()
\ No newline at end of file
+copyToClipboard()