improve the comparison search feature
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 56s

This commit is contained in:
Tudor Sitaru
2026-01-06 15:58:15 +00:00
parent d891b1d46c
commit 6fb9b94602
2 changed files with 94 additions and 30 deletions

View File

@@ -476,6 +476,38 @@ body {
display: block;
}
.compare-results-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.6rem 1rem;
background: var(--bg-secondary);
border-bottom: 1px solid var(--border-color);
font-size: 0.8rem;
color: var(--text-muted);
position: sticky;
top: 0;
}
.compare-results-close {
width: 24px;
height: 24px;
border: none;
background: transparent;
border-radius: var(--radius-sm);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
transition: var(--transition);
}
.compare-results-close:hover {
background: var(--accent-coral);
color: white;
}
.compare-result-item {
padding: 0.75rem 1rem;
cursor: pointer;