[FIX] Force AA framework cursor style

Might be overwritten by Bootstrap otherwise.
This commit is contained in:
Peter Pfeufer 2025-08-09 22:30:29 +02:00
parent e68793f363
commit 80ac8f7feb
No known key found for this signature in database

View File

@ -80,47 +80,47 @@
------------------------------------------------------------------------------------- */ ------------------------------------------------------------------------------------- */
@media all { @media all {
.cursor-auto { .cursor-auto {
cursor: auto; cursor: auto !important;
} }
.cursor-default { .cursor-default {
cursor: default; cursor: default !important;
} }
.cursor-pointer { .cursor-pointer {
cursor: pointer; cursor: pointer !important;
} }
.cursor-wait { .cursor-wait {
cursor: wait; cursor: wait !important;
} }
.cursor-text { .cursor-text {
cursor: text; cursor: text !important;
} }
.cursor-move { .cursor-move {
cursor: move; cursor: move !important;
} }
.cursor-help { .cursor-help {
cursor: help; cursor: help !important;
} }
.cursor-not-allowed { .cursor-not-allowed {
cursor: not-allowed; cursor: not-allowed !important;
} }
.cursor-inherit { .cursor-inherit {
cursor: inherit; cursor: inherit !important;
} }
.cursor-zoom-in { .cursor-zoom-in {
cursor: zoom-in; cursor: zoom-in !important;
} }
.cursor-zoom-out { .cursor-zoom-out {
cursor: zoom-out; cursor: zoom-out !important;
} }
} }