This commit is contained in:
2026-02-09 13:32:57 +01:00
parent f8d30f86cc
commit 5e75a7c2d6

View File

@@ -1,27 +1,45 @@
/* cursor.css */ /* cursor.css */
/* Default: System cursor (not custom) */ /* Default: System cursor (not custom) */
body, body.system-cursor,
html, body.system-cursor *,
a, body.system-cursor a,
button, body.system-cursor button,
input, body.system-cursor input,
textarea, body.system-cursor textarea,
select, body.system-cursor select,
.menu-toggle, body.system-cursor .menu-toggle,
label { body.system-cursor label,
body.system-cursor [role="button"],
body.system-cursor [onclick],
body.system-cursor .clickable {
cursor: auto !important; cursor: auto !important;
} }
/* Custom cursor only when enabled */ /* Custom cursor: Hide default cursor on ALL elements when custom is enabled */
body:not(.system-cursor), body:not(.system-cursor),
body:not(.system-cursor) *,
body:not(.system-cursor) a, body:not(.system-cursor) a,
body:not(.system-cursor) button, body:not(.system-cursor) button,
body:not(.system-cursor) input, body:not(.system-cursor) input,
body:not(.system-cursor) textarea, body:not(.system-cursor) textarea,
body:not(.system-cursor) select, body:not(.system-cursor) select,
body:not(.system-cursor) .menu-toggle, body:not(.system-cursor) .menu-toggle,
body:not(.system-cursor) label { body:not(.system-cursor) label,
body:not(.system-cursor) [role="button"],
body:not(.system-cursor) [onclick],
body:not(.system-cursor) .clickable,
body:not(.system-cursor) *:hover,
body:not(.system-cursor) *:active,
body:not(.system-cursor) *:focus,
body:not(.system-cursor) [style*="cursor: pointer"],
body:not(.system-cursor) .cursor-pointer,
body:not(.system-cursor) button,
body:not(.system-cursor) .btn,
body:not(.system-cursor) .offer-card,
body:not(.system-cursor) .service-card,
body:not(.system-cursor) .menu-toggle,
body:not(.system-cursor) #cursorToggle {
cursor: none !important; cursor: none !important;
} }