aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-04-22 09:31:38 +0530
committerBobby <[email protected]>2026-04-22 09:31:38 +0530
commit0bf04a2f4cc4675df0598bc2a4d604f442a36413 (patch)
treea93379b042fdace9e1842679fcf5d9c1a23098aa
parent7d21ed8f09e60d3ed962bedcf304a5e17e07b2d8 (diff)
downloadhollowdark-0bf04a2f4cc4675df0598bc2a4d604f442a36413.tar.xz
hollowdark-0bf04a2f4cc4675df0598bc2a4d604f442a36413.zip
Drop cursor: pointer from the button reset so the custom pointer SVG wins
-rw-r--r--static/css/app.css7
-rw-r--r--static/cursors/cursor-pointer.svg8
-rw-r--r--static/cursors/cursor.svg7
3 files changed, 12 insertions, 10 deletions
diff --git a/static/css/app.css b/static/css/app.css
index 8d33846..87b753f 100644
--- a/static/css/app.css
+++ b/static/css/app.css
@@ -98,7 +98,7 @@ body {
font-family: var(--font-body);
font-size: var(--text-md);
line-height: var(--leading-normal);
- cursor: url('../cursors/cursor.svg') 9 9, auto;
+ cursor: url('../cursors/cursor.svg') 12 12, auto;
}
a,
@@ -108,12 +108,12 @@ summary,
select,
[role='button'],
[role='link'] {
- cursor: url('../cursors/cursor-pointer.svg') 10 10, pointer;
+ cursor: url('../cursors/cursor-pointer.svg') 13 13, pointer;
}
input,
textarea {
- cursor: url('../cursors/cursor.svg') 9 9, text;
+ cursor: url('../cursors/cursor.svg') 12 12, text;
}
body {
@@ -187,7 +187,6 @@ button {
border: none;
color: inherit;
font: inherit;
- cursor: pointer;
padding: 0;
}
diff --git a/static/cursors/cursor-pointer.svg b/static/cursors/cursor-pointer.svg
index 4c7cc91..9d7886b 100644
--- a/static/cursors/cursor-pointer.svg
+++ b/static/cursors/cursor-pointer.svg
@@ -1,4 +1,6 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
- <circle cx="10" cy="10" r="7" fill="#B8884A" stroke="#13100E" stroke-width="1.4"/>
- <circle cx="10" cy="10" r="7" fill="none" stroke="rgba(232, 226, 213, 0.55)" stroke-width="0.8"/>
+<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 26 26">
+ <circle cx="13" cy="13" r="10" fill="#B8884A" stroke="#13100E" stroke-width="2.2"/>
+ <circle cx="13" cy="13" r="10" fill="none" stroke="#E5DFD3" stroke-width="0.9" stroke-opacity="0.65"/>
+ <circle cx="13" cy="13" r="3.2" fill="#13100E" fill-opacity="0.55"/>
+ <circle cx="13" cy="13" r="1.6" fill="#E5DFD3"/>
</svg>
diff --git a/static/cursors/cursor.svg b/static/cursors/cursor.svg
index 832133b..dce509b 100644
--- a/static/cursors/cursor.svg
+++ b/static/cursors/cursor.svg
@@ -1,4 +1,5 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
- <circle cx="9" cy="9" r="5.2" fill="rgba(19, 16, 14, 0.55)" stroke="#E5DFD3" stroke-width="1.4"/>
- <circle cx="9" cy="9" r="1" fill="#E5DFD3"/>
+<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
+ <circle cx="12" cy="12" r="8.5" fill="none" stroke="#13100E" stroke-width="2.8"/>
+ <circle cx="12" cy="12" r="8.5" fill="none" stroke="#E5DFD3" stroke-width="1.6"/>
+ <circle cx="12" cy="12" r="1.3" fill="#E5DFD3"/>
</svg>