Add download client logos to filter UI with fallback handling
Some checks failed
Build and Push Docker Image / build (push) Successful in 30s
Licence Check / Licence compatibility and copyright header verification (push) Successful in 1m4s
CI / Security audit (push) Has been cancelled
CI / Tests & coverage (push) Has been cancelled

This commit is contained in:
2026-05-20 00:14:20 +01:00
parent 80cf3eaa39
commit f5883d4929
7 changed files with 50 additions and 0 deletions

View File

@@ -842,6 +842,32 @@ body {
color: var(--text-secondary);
}
/* Client icon */
.download-client-icon {
width: 20px;
height: 20px;
flex-shrink: 0;
display: inline-block;
vertical-align: middle;
}
.download-client-icon img {
width: 100%;
height: 100%;
object-fit: contain;
}
.download-client-icon.fallback {
font-size: 14px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
background: var(--surface-alt);
border-radius: 3px;
color: var(--text-primary);
}
.history-header {
display: flex;
align-items: center;