mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-28 06:46:59 -05:00
32 lines
563 B
CSS
32 lines
563 B
CSS
/* Loading indicator */
|
|
.htmx-indicator {
|
|
opacity: 0;
|
|
}
|
|
|
|
.htmx-request .htmx-indicator {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Search results spacing */
|
|
#search-results {
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
/* Dark mode adjustments */
|
|
@media (prefers-color-scheme: dark) {
|
|
#search-results .bg-white {
|
|
background-color: #1f2937;
|
|
}
|
|
|
|
#search-results .text-gray-900 {
|
|
color: #f3f4f6;
|
|
}
|
|
|
|
#search-results .text-gray-500 {
|
|
color: #9ca3af;
|
|
}
|
|
|
|
#search-results .hover\:bg-gray-50:hover {
|
|
background-color: #374151;
|
|
}
|
|
} |