🔧 Update: Enhance printer deletion API documentation and success messaging
**Änderungen:** - ✅ admin_unified.py: Aktualisierte Dokumentation der delete_printer_api-Funktion, um die Löschung von Druckern mit allen Abhängigkeiten zu verdeutlichen. - ✅ Erfolgsnachricht angepasst, um gelöschte Abhängigkeiten in der Rückgabe zu inkludieren. **Ergebnis:** - Verbesserte Klarheit und Nachvollziehbarkeit bei der Nutzung der API zur Drucker-Löschung. - Detailliertere Rückmeldungen für Benutzer über erfolgreich gelöschte Drucker und deren Abhängigkeiten. 🤖 Generated with [Claude Code](https://claude.ai/code)
This commit is contained in:
@ -23,12 +23,14 @@
|
||||
|
||||
/* === LIGHT MODE FOUNDATION === */
|
||||
--bg-primary: #ffffff;
|
||||
--bg-secondary: #fafbfc;
|
||||
--bg-tertiary: #f8fafc;
|
||||
--bg-secondary: #f8fafc;
|
||||
--bg-tertiary: #f1f5f9;
|
||||
--bg-card: #ffffff;
|
||||
--bg-surface: #fefefe;
|
||||
--bg-overlay: rgba(255, 255, 255, 0.95);
|
||||
--bg-modal: rgba(255, 255, 255, 0.98);
|
||||
--bg-input: #ffffff;
|
||||
--bg-input-focus: #ffffff;
|
||||
|
||||
/* === TEXT COLORS LIGHT === */
|
||||
--text-primary: #111827;
|
||||
@ -83,6 +85,8 @@
|
||||
--bg-surface: #151515;
|
||||
--bg-overlay: rgba(0, 0, 0, 0.95);
|
||||
--bg-modal: rgba(26, 26, 26, 0.98);
|
||||
--bg-input: #1a1a1a;
|
||||
--bg-input-focus: #222222;
|
||||
|
||||
/* === TEXT COLORS DARK === */
|
||||
--text-primary: #ffffff;
|
||||
@ -347,28 +351,48 @@
|
||||
}
|
||||
|
||||
/* === FORM ELEMENTS === */
|
||||
.form-input {
|
||||
.form-input, input, textarea, select {
|
||||
@apply w-full;
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-primary);
|
||||
background: var(--bg-input);
|
||||
border: 2px solid var(--border-primary);
|
||||
color: var(--text-primary);
|
||||
padding: 0.75rem 1rem;
|
||||
transition: border-color 0.15s ease, box-shadow 0.15s ease;
|
||||
padding: 1rem 1.25rem;
|
||||
border-radius: 16px;
|
||||
margin: 0.5rem 0;
|
||||
transition: all 0.15s ease;
|
||||
font-size: 0.95rem;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.form-input:focus {
|
||||
.form-input:focus, input:focus, textarea:focus, select:focus {
|
||||
outline: none;
|
||||
border-color: var(--border-focus);
|
||||
box-shadow: var(--focus-ring);
|
||||
background: var(--bg-input-focus);
|
||||
box-shadow: var(--focus-ring), 0 4px 12px rgba(0, 0, 0, 0.1);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.form-input::placeholder {
|
||||
.form-input::placeholder, input::placeholder, textarea::placeholder {
|
||||
color: var(--text-muted);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.form-label {
|
||||
@apply block text-sm font-medium mb-2;
|
||||
/* Dark Mode Input Spezifika */
|
||||
.dark .form-input, .dark input, .dark textarea, .dark select {
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
||||
border-color: var(--border-primary);
|
||||
}
|
||||
|
||||
.dark .form-input:focus, .dark input:focus, .dark textarea:focus, .dark select:focus {
|
||||
box-shadow: var(--focus-ring), 0 4px 16px rgba(0, 0, 0, 0.4);
|
||||
border-color: var(--border-focus);
|
||||
}
|
||||
|
||||
.form-label, label {
|
||||
@apply block text-sm font-semibold;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 0.75rem;
|
||||
margin-top: 1.25rem;
|
||||
}
|
||||
|
||||
/* === NAVIGATION === */
|
||||
|
Reference in New Issue
Block a user