From efc0fcf11df1a6c39d6a260ba4c97ee03e327e4d Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Sun, 31 Aug 2025 17:55:04 +0200 Subject: [PATCH 1/2] [CHANGE] Load Framework CSS before theme CSS So it's available when the theme CSS starts loading. --- allianceauth/templates/allianceauth/base-bs5.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/allianceauth/templates/allianceauth/base-bs5.html b/allianceauth/templates/allianceauth/base-bs5.html index a5bcb96d..a3dcd795 100644 --- a/allianceauth/templates/allianceauth/base-bs5.html +++ b/allianceauth/templates/allianceauth/base-bs5.html @@ -18,10 +18,11 @@ {% block title %}{% block page_title %}{% endblock page_title %} - {{ SITE_NAME }}{% endblock title %} + {% include 'bundles/auth-framework-css.html' %} + {% theme_css %} {% include 'bundles/fontawesome.html' %} - {% include 'bundles/auth-framework-css.html' %} {% include 'bundles/jquery-js.html' %} {% include 'bundles/auth-framework-js.html' %} From 735e890de4217dc8abc3d72bd6cdd88af61caa36 Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Sat, 6 Sep 2025 16:16:20 +0200 Subject: [PATCH 2/2] [FIX] Don't let Bootstrap override our override --- .../static/allianceauth/framework/css/auth-framework.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allianceauth/framework/static/allianceauth/framework/css/auth-framework.css b/allianceauth/framework/static/allianceauth/framework/css/auth-framework.css index f83212d0..a7cf70b6 100644 --- a/allianceauth/framework/static/allianceauth/framework/css/auth-framework.css +++ b/allianceauth/framework/static/allianceauth/framework/css/auth-framework.css @@ -31,7 +31,7 @@ ------------------------------------------------------------------------------------- */ @media all { .table { - --bs-table-bg: transparent; + --bs-table-bg: transparent !important; } }