mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-06-09 12:39:23 -03:00
- Remove [LoRAs] prefix noise from conflict detail display - Limit inline conflict groups to 5, show remainder count - Add 'Switch to Full Path Syntax' action in conflict card - Add confirmation modal before resolving conflicts (shows rename strategy) - Register resolveFilenameConflictsModal in ModalManager (fix no-op showModal) - Switch to Interface section and add highlight animation on syntax-format nav - Sync and translate conflictConfirm strings across all 10 locales
81 lines
1.9 KiB
CSS
81 lines
1.9 KiB
CSS
/* Delete Modal specific styles */
|
|
|
|
.delete-message {
|
|
color: var(--text-color);
|
|
margin: var(--space-2) 0;
|
|
}
|
|
|
|
/* Update delete modal styles */
|
|
.delete-modal {
|
|
display: none; /* Set initial display to none */
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
z-index: var(--z-overlay);
|
|
}
|
|
|
|
/* Add new style for when modal is shown */
|
|
.delete-modal.show {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.delete-modal-content {
|
|
max-width: 500px;
|
|
width: 90%;
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
animation: modalFadeIn 0.2s ease-out;
|
|
}
|
|
|
|
#resolveFilenameConflictsModal .confirmation-message {
|
|
color: var(--text-color);
|
|
margin: var(--space-2) 0;
|
|
font-size: 1em;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
#resolveFilenameConflictsModal .resolve-conflicts-detail {
|
|
color: var(--text-color);
|
|
margin: var(--space-2) 0;
|
|
font-size: 0.95em;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
#resolveFilenameConflictsModal .resolve-conflicts-detail code {
|
|
background: var(--lora-surface);
|
|
padding: 2px 6px;
|
|
border-radius: 3px;
|
|
font-family: monospace;
|
|
border: 1px solid var(--lora-border);
|
|
}
|
|
|
|
#resolveFilenameConflictsModal .resolve-conflicts-impact {
|
|
background: var(--lora-surface);
|
|
border: 1px solid var(--lora-border);
|
|
border-radius: var(--border-radius-sm);
|
|
padding: var(--space-2);
|
|
margin: var(--space-2) 0;
|
|
color: var(--text-color);
|
|
text-align: left;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.delete-model-info,
|
|
.exclude-model-info {
|
|
/* Update info display styling */
|
|
background: var(--lora-surface);
|
|
border: 1px solid var(--lora-border);
|
|
border-radius: var(--border-radius-sm);
|
|
padding: var(--space-2);
|
|
margin: var(--space-2) 0;
|
|
color: var(--text-color);
|
|
word-break: break-all;
|
|
text-align: left;
|
|
line-height: 1.5;
|
|
} |