From 588012a8e8f94fa332fc28f58ffb8a43eb21bc4a Mon Sep 17 00:00:00 2001 From: sh20raj <shaswatraj3@gmail.com> Date: Wed, 26 Feb 2025 11:07:43 +0530 Subject: [PATCH] Implemented a new overrides.css file that allows administrators to add custom styles that will be loaded after the main stylesheet. This provides a clean and maintainable way for administrators to customize the UI appearance without modifying core stylesheets. Key changes: - Created server/core/static/overrides.css for custom style overrides - Added comments explaining the purpose and usage of the file - Ensured the file loads after main stylesheet to properly override default styles --- server/core/static/overrides.css | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 server/core/static/overrides.css diff --git a/server/core/static/overrides.css b/server/core/static/overrides.css new file mode 100644 index 000000000..080756480 --- /dev/null +++ b/server/core/static/overrides.css @@ -0,0 +1,3 @@ +/* Custom stylesheet overrides */ +/* Administrators can add custom styles here */ +/* This file will be loaded after the main stylesheet */ \ No newline at end of file