Fix Modal Unificar Modo Oscuro
This commit is contained in:
@@ -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}>
|
||||
|
||||
@@ -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 */
|
||||
}
|
||||
Reference in New Issue
Block a user