From 80ac8f7feb47324335f549960294ad464128d6cf Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Sat, 9 Aug 2025 22:30:29 +0200 Subject: [PATCH] [FIX] Force AA framework cursor style Might be overwritten by Bootstrap otherwise. --- .../framework/css/auth-framework.css | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/allianceauth/framework/static/allianceauth/framework/css/auth-framework.css b/allianceauth/framework/static/allianceauth/framework/css/auth-framework.css index e44739c7..589d23bc 100644 --- a/allianceauth/framework/static/allianceauth/framework/css/auth-framework.css +++ b/allianceauth/framework/static/allianceauth/framework/css/auth-framework.css @@ -80,47 +80,47 @@ ------------------------------------------------------------------------------------- */ @media all { .cursor-auto { - cursor: auto; + cursor: auto !important; } .cursor-default { - cursor: default; + cursor: default !important; } .cursor-pointer { - cursor: pointer; + cursor: pointer !important; } .cursor-wait { - cursor: wait; + cursor: wait !important; } .cursor-text { - cursor: text; + cursor: text !important; } .cursor-move { - cursor: move; + cursor: move !important; } .cursor-help { - cursor: help; + cursor: help !important; } .cursor-not-allowed { - cursor: not-allowed; + cursor: not-allowed !important; } .cursor-inherit { - cursor: inherit; + cursor: inherit !important; } .cursor-zoom-in { - cursor: zoom-in; + cursor: zoom-in !important; } .cursor-zoom-out { - cursor: zoom-out; + cursor: zoom-out !important; } }