Fix icon hover colors, text alignment, and UI improvements

This commit is contained in:
Krikorios
2026-02-25 23:25:59 +02:00
parent 00fda3e045
commit fcc4352afa
46 changed files with 4011 additions and 600 deletions
+14
View File
@@ -0,0 +1,14 @@
# Admin directory — disable directory listing
Options -Indexes
# Block direct access to any PHP files OTHER than index.php (auth is handled by JS + API)
# All legitimate admin PHP is in /api/ — nothing in /admin/ should be a PHP script
<FilesMatch "\.php$">
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
</FilesMatch>