Die Dateien wurden wie folgt geändert und hinzugefügt:
1. backend/logs - 'admin', 'admin_api', 'app', 'calendar', 'data_management', 'drucker_steuerung', 'energy_monitoring', 'guest', 'hardware_integration', 'job_queue_system', 'jobs', 'models', 'monitoring_analytics', 'permissions', 'scheduler', 'security_suite', 'startup', '
This commit is contained in:
@ -182,7 +182,11 @@
|
||||
|
||||
/* === BUTTONS (Optimiert für beide Modi) === */
|
||||
.btn, button {
|
||||
@apply inline-flex items-center justify-center text-sm font-medium;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
background: var(--bg-card);
|
||||
color: var(--text-primary);
|
||||
border: 1px solid var(--border-primary);
|
||||
@ -548,7 +552,7 @@
|
||||
|
||||
/* === FORM ELEMENTS (Optimiert für beide Modi) === */
|
||||
.form-input, input:not([type="checkbox"]):not([type="radio"]), textarea, select {
|
||||
@apply w-full;
|
||||
width: 100%;
|
||||
background: var(--bg-input);
|
||||
border: 1px solid var(--border-primary);
|
||||
color: var(--text-primary);
|
||||
@ -605,7 +609,7 @@
|
||||
|
||||
/* Form Labels */
|
||||
.form-label, label {
|
||||
@apply block text-sm font-medium;
|
||||
display: block; font-size: 0.875rem; font-weight: 500;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 0.5rem;
|
||||
margin-top: 1rem;
|
||||
@ -729,7 +733,7 @@ select {
|
||||
}
|
||||
|
||||
.nav-item {
|
||||
@apply px-3 py-2;
|
||||
padding: 0.5rem 0.75rem;
|
||||
color: var(--text-secondary);
|
||||
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
border-radius: 8px;
|
||||
@ -823,7 +827,7 @@ select {
|
||||
|
||||
/* === ALERTS === */
|
||||
.alert {
|
||||
@apply border;
|
||||
border: 1px solid var(--border-primary);
|
||||
background: var(--bg-card);
|
||||
border-color: var(--border-primary);
|
||||
border-radius: 16px !important;
|
||||
@ -862,14 +866,14 @@ select {
|
||||
|
||||
/* === TABLES === */
|
||||
.table {
|
||||
@apply w-full border-collapse;
|
||||
width: 100%; border-collapse: collapse;
|
||||
border-radius: 16px !important;
|
||||
overflow: hidden;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.table th {
|
||||
@apply text-left text-sm font-medium uppercase tracking-wider;
|
||||
text-align: left; font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-tertiary);
|
||||
border-bottom: 1px solid var(--border-primary);
|
||||
@ -877,7 +881,7 @@ select {
|
||||
}
|
||||
|
||||
.table td {
|
||||
@apply text-sm;
|
||||
font-size: 0.875rem;
|
||||
color: var(--text-secondary);
|
||||
border-bottom: 1px solid var(--border-primary);
|
||||
padding: 1rem 1.5rem;
|
||||
@ -889,7 +893,7 @@ select {
|
||||
|
||||
/* === TOOLTIPS === */
|
||||
.tooltip {
|
||||
@apply absolute z-50 text-sm shadow-lg;
|
||||
position: absolute; z-index: 50; font-size: 0.875rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
||||
background: var(--bg-modal);
|
||||
color: var(--text-primary);
|
||||
border: 1px solid var(--border-primary);
|
||||
@ -901,7 +905,7 @@ select {
|
||||
|
||||
/* === BADGES & STATUS === */
|
||||
.badge {
|
||||
@apply inline-flex items-center text-xs font-medium;
|
||||
display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 500;
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
border-radius: 16px !important;
|
||||
@ -931,12 +935,12 @@ select {
|
||||
|
||||
/* === LOADING STATES === */
|
||||
.loading {
|
||||
@apply animate-pulse;
|
||||
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
||||
background: var(--bg-tertiary);
|
||||
}
|
||||
|
||||
.spinner {
|
||||
@apply animate-spin rounded-full;
|
||||
animation: spin 1s linear infinite; border-radius: 9999px;
|
||||
border: 2px solid var(--border-primary);
|
||||
border-top-color: var(--text-accent);
|
||||
}
|
||||
@ -956,7 +960,7 @@ select {
|
||||
}
|
||||
|
||||
.btn {
|
||||
@apply text-xs;
|
||||
font-size: 0.75rem;
|
||||
padding: 0.5rem 1rem;
|
||||
margin: 0.125rem;
|
||||
}
|
||||
@ -1010,20 +1014,47 @@ select {
|
||||
|
||||
/* === LEGACY COMPATIBILITY === */
|
||||
.glass-modal {
|
||||
@extend .modal;
|
||||
@extend .glass-card;
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 50;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
backdrop-filter: blur(4px);
|
||||
background: var(--bg-modal);
|
||||
border: 1px solid var(--border-primary);
|
||||
border-radius: 1rem;
|
||||
box-shadow: var(--shadow-card);
|
||||
}
|
||||
|
||||
.mb-dashboard-card {
|
||||
@extend .card;
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-primary);
|
||||
border-radius: 1rem;
|
||||
padding: 1.5rem;
|
||||
box-shadow: var(--shadow-card);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-professional {
|
||||
@extend .btn-primary;
|
||||
background: linear-gradient(135deg, var(--mb-primary), var(--mb-primary-dark));
|
||||
color: var(--text-on-primary);
|
||||
border: 1px solid var(--mb-primary);
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 0.75rem;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.input-professional {
|
||||
@extend .form-input;
|
||||
background: var(--bg-input);
|
||||
border: 1px solid var(--border-primary);
|
||||
border-radius: 0.75rem;
|
||||
padding: 0.75rem 1rem;
|
||||
color: var(--text-primary);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
/* === CSS CUSTOM PROPERTIES FALLBACKS === */
|
||||
@ -1061,7 +1092,7 @@ body {
|
||||
|
||||
/* === TABLE OPTIMIERUNGEN === */
|
||||
.table {
|
||||
@apply w-full border-collapse;
|
||||
width: 100%; border-collapse: collapse;
|
||||
border-radius: 12px !important;
|
||||
overflow: hidden;
|
||||
margin: 1rem 0;
|
||||
@ -1070,7 +1101,7 @@ body {
|
||||
}
|
||||
|
||||
.table th {
|
||||
@apply text-left text-sm font-medium uppercase tracking-wider;
|
||||
text-align: left; font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-tertiary);
|
||||
border-bottom: 1px solid var(--border-primary);
|
||||
@ -1078,7 +1109,7 @@ body {
|
||||
}
|
||||
|
||||
.table td {
|
||||
@apply text-sm;
|
||||
font-size: 0.875rem;
|
||||
color: var(--text-secondary);
|
||||
border-bottom: 1px solid var(--border-primary);
|
||||
padding: 1rem 1.5rem;
|
||||
@ -1103,7 +1134,7 @@ body {
|
||||
|
||||
/* === TOOLTIPS === */
|
||||
.tooltip {
|
||||
@apply absolute z-50 text-sm;
|
||||
position: absolute; z-index: 50; font-size: 0.875rem;
|
||||
background: var(--bg-modal);
|
||||
color: var(--text-primary);
|
||||
border: 1px solid var(--border-primary);
|
||||
@ -1116,7 +1147,7 @@ body {
|
||||
|
||||
/* === BADGES & STATUS === */
|
||||
.badge {
|
||||
@apply inline-flex items-center text-xs font-medium;
|
||||
display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 500;
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
border-radius: 12px !important;
|
||||
@ -1145,7 +1176,7 @@ body {
|
||||
}
|
||||
|
||||
.btn {
|
||||
@apply text-sm;
|
||||
font-size: 0.875rem;
|
||||
padding: 0.625rem 1rem;
|
||||
margin: 0.125rem;
|
||||
border-radius: 8px;
|
||||
@ -1286,13 +1317,13 @@ body {
|
||||
|
||||
/* === LOADING STATES === */
|
||||
.loading {
|
||||
@apply animate-pulse;
|
||||
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
||||
background: var(--bg-tertiary);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
@apply animate-spin rounded-full;
|
||||
animation: spin 1s linear infinite; border-radius: 9999px;
|
||||
border: 2px solid var(--border-primary);
|
||||
border-top-color: var(--text-accent);
|
||||
width: 1.5rem;
|
||||
|
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user