fix(ui): toggle password en login + fondo blanco card talento
Fix A: botón inline con ícono SVG (ojo/ojo tachado) en el campo password de /login, alterna type password/text, aria-label según estado. Sin librería nueva. Fix B: .db-widget-star pierde el gradiente, hereda background blanco de .db-widget igual que los demás cards. Borde y título teal intactos.
This commit is contained in:
@@ -964,7 +964,6 @@ body {
|
||||
/* ── Card destacada (estrella) ── */
|
||||
.db-widget-star {
|
||||
border-color: var(--color-re-teal);
|
||||
background: linear-gradient(135deg, #dff4f5, #ffffff);
|
||||
}
|
||||
.db-widget-star .db-widget-title { color: var(--color-re-teal); }
|
||||
|
||||
@@ -1093,6 +1092,26 @@ body {
|
||||
color: var(--color-text);
|
||||
}
|
||||
.login-error { margin: 0; }
|
||||
.login-password-wrapper { position: relative; }
|
||||
.login-password-wrapper .text-short-input { padding-right: 40px; }
|
||||
.login-password-toggle {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 8px;
|
||||
transform: translateY(-50%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-radius: var(--radius);
|
||||
color: var(--color-text-muted);
|
||||
cursor: pointer;
|
||||
}
|
||||
.login-password-toggle:hover { color: var(--color-text); }
|
||||
.login-submit {
|
||||
margin-top: 8px;
|
||||
padding: 10px 20px;
|
||||
|
||||
Reference in New Issue
Block a user