"Update API configuration and SSL certificates for enhanced security"

This commit is contained in:
2025-05-26 09:54:29 +02:00
parent 45fcc1a948
commit 201f75cfd3
9 changed files with 8308 additions and 84 deletions

View File

@@ -70,6 +70,27 @@ html.dark body .bg-white.dark\:bg-dark-card {
background-color: #1e293b !important;
}
/* Spezifischere Selektoren für das Admin-Panel im Dark Mode */
body.dark .admin-container .bg-white.dark\:bg-dark-card {
background-color: #1e293b !important;
}
body.dark #users-tab .bg-white.dark\:bg-dark-card,
body.dark #printers-tab .bg-white.dark\:bg-dark-card,
body.dark #scheduler-tab .bg-white.dark\:bg-dark-card,
body.dark #system-tab .bg-white.dark\:bg-dark-card,
body.dark #logs-tab .bg-white.dark\:bg-dark-card {
background-color: #1e293b !important;
}
body.dark .admin-stats .stat-card {
background-color: #1e293b !important;
}
body.dark .bg-slate-50.dark\:bg-slate-800 {
background-color: #0f172a !important;
}
/* Admin Panel Container */
.admin-container {
max-width: 1280px;
@@ -841,6 +862,38 @@ html.dark body .bg-white.dark\:bg-dark-card {
}
/* Additional utilities */
.transition-colors {
transition-property: color, background-color, border-color;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 300ms;
}
/* Tailwind Dark Mode Overrides */
html.dark body [class*="dark\:bg-dark-card"] {
background-color: #1e293b !important;
}
html.dark body [class*="dark\:bg-slate-800"] {
background-color: #0f172a !important;
}
html.dark body [class*="dark\:bg-slate-700"] {
background-color: #1e293b !important;
}
html.dark body div[class*="dark\:hover\:bg"] {
background-color: #1e293b !important;
}
html.dark body tr[class*="dark\:hover\:bg"] {
background-color: #1e293b !important;
}
html.dark body tr[class*="dark\:hover\:bg"]:hover {
background-color: #334155 !important;
}
/* Ensure proper transition */
.transition-colors {
transition-property: color, background-color, border-color;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);