mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 14:11:09 -05:00
Implement robust security headers, including CSP with nonces, and integrate comprehensive SEO meta tags into the base template and homepage. Add inline styles for CSP compliance and improve theme management script for immediate theme application. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 48ecdb60-d0f0-4b75-95c9-34e409ef35fb Replit-Commit-Checkpoint-Type: intermediate_checkpoint
29 lines
508 B
CSS
29 lines
508 B
CSS
/* Inline styles that were moved from the base template for CSP compliance */
|
|
|
|
[x-cloak] {
|
|
display: none !important;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
position: absolute;
|
|
right: 0;
|
|
margin-top: 0.5rem;
|
|
width: 12rem;
|
|
border-radius: 0.375rem;
|
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
|
|
0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
z-index: 50;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.htmx-indicator {
|
|
display: none;
|
|
}
|
|
|
|
.htmx-request .htmx-indicator {
|
|
display: block;
|
|
}
|
|
|
|
.htmx-request.htmx-indicator {
|
|
display: block;
|
|
} |