Fix Modal Unificar Modo Oscuro

This commit is contained in:
2025-10-13 09:43:24 -03:00
parent a32f0467ef
commit acf2f9a35c
2 changed files with 14 additions and 1 deletions

View File

@@ -250,7 +250,8 @@ const GestionComponentes = () => {
<div className={styles.modal}>
<h3>Unificar Valor</h3>
<p>Se reemplazarán todas las instancias de:</p>
<strong style={{ display: 'block', marginBottom: '1rem', background: '#e9ecef', padding: '8px', borderRadius: '4px' }}>{valorAntiguo}</strong>
<strong className={styles.highlightBox}>{valorAntiguo}</strong>
<label>Por el nuevo valor:</label>
<input type="text" value={valorNuevo} onChange={e => setValorNuevo(e.target.value)} className={styles.modalInput} />
<div className={styles.modalActions}>

View File

@@ -767,3 +767,15 @@
width: 1%;
white-space: nowrap;
}
/* --- MODAL DE UNIFICAR --- */
.highlightBox {
display: block;
margin-bottom: 1rem;
padding: 8px;
border-radius: 4px;
background-color: var(--color-border-subtle);
color: var(--color-text-secondary);
border: 1px solid var(--color-border); /* Un borde sutil para definirlo */
}