diff options
author | ynfle <23086821+ynfle@users.noreply.github.com> | 2021-10-28 11:02:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 10:02:18 +0200 |
commit | c80e2c173686bd12904e5487752dc0ce20cb8bcb (patch) | |
tree | 8375da8b393da980edb33a49e2c4c67c83acfcfc /tools | |
parent | cd2b093d07303aa7bfcb4a007281f56de3755110 (diff) | |
download | Nim-c80e2c173686bd12904e5487752dc0ce20cb8bcb.tar.gz |
Docs: change clipboard cursor type to `pointer` (#19064)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dochack/dochack.nim | 3 |
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() |