feat: redesign profile view with editable fields and search history

This commit is contained in:
Antoni Nuñez Romeu
2026-07-06 18:04:37 +02:00
parent 86a4e119b0
commit bc8b9ecd31
2 changed files with 240 additions and 149 deletions
+97
View File
@@ -345,3 +345,100 @@
min-height: 4rem;
}
}
/* Profile Avatar Editable */
.profile-avatar-editable {
cursor: pointer;
position: relative;
}
.profile-avatar-editable:hover .profile-avatar-overlay {
opacity: 1;
}
.profile-avatar-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.2s;
color: white;
}
.profile-avatar-image {
width: 100%;
height: 100%;
border-radius: var(--radius-full);
object-fit: cover;
}
/* Editable Info Cards */
.info-card-input {
width: 100%;
padding: 0.75rem;
border: 2px solid var(--outline-variant);
border-radius: var(--radius);
background: var(--surface);
color: var(--on-surface);
font-size: 1rem;
font-family: inherit;
margin-top: 0.5rem;
}
.info-card-input:focus {
outline: none;
border-color: var(--primary);
}
.info-card-input:disabled {
opacity: 0.6;
}
/* Search History */
.profile-search-history {
background: var(--surface-container-lowest);
border: 1px solid var(--outline-variant);
border-radius: var(--radius-md);
padding: 1rem;
margin-top: 0.5rem;
}
.profile-search-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 0;
border-bottom: 1px solid var(--outline-variant);
}
.profile-search-item:last-child {
border-bottom: none;
}
.profile-search-address {
flex: 1;
font-size: 0.9rem;
color: var(--on-surface);
}
.profile-search-delete {
background: none;
border: none;
cursor: pointer;
color: var(--on-surface-variant);
padding: 0.25rem;
border-radius: var(--radius);
transition: background 0.15s;
}
.profile-search-delete:hover {
background: rgba(186, 26, 26, 0.1);
color: var(--error);
}