fix(styles): force-add result-items.css missed by .gitignore (#660)

The components.css split (PR #657) wrote `result-items.css` to disk, but
.gitignore line 57 (`result-*`) silently filtered it out of `git add -A`.
Local builds worked because the file existed on the splitter's machine;
fresh clones fail with `ENOENT: no such file or directory` when vite
resolves the `@import './result-items.css';` in components/index.css.

Force-adding with `git add -f` keeps the broad `result-*` ignore for
test artifacts intact.
This commit is contained in:
Frank Stellmacher
2026-05-13 20:05:54 +02:00
committed by GitHub
parent e0ff596a02
commit 2eb23e99b5
+77
View File
@@ -0,0 +1,77 @@
/* ─── Result items ─── */
.mobile-search-item {
display: flex;
align-items: center;
gap: 12px;
width: 100%;
padding: 10px 16px;
background: none;
border: none;
cursor: pointer;
text-align: left;
transition: background var(--transition-fast);
}
.mobile-search-item:active {
background: var(--bg-hover);
}
.mobile-search-thumb {
width: 46px;
height: 46px;
border-radius: 6px;
object-fit: cover;
flex-shrink: 0;
}
.mobile-search-thumb--artist-round {
border-radius: 50%;
}
.mobile-search-avatar {
width: 46px;
height: 46px;
border-radius: 8px;
background: var(--bg-card);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
flex-shrink: 0;
}
.mobile-search-avatar--circle {
border-radius: 50%;
}
.mobile-search-item-info {
display: flex;
flex-direction: column;
gap: 3px;
min-width: 0;
flex: 1;
}
.mobile-search-item-title {
font-size: 15px;
font-weight: 500;
color: var(--text-primary);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.mobile-search-item-sub {
font-size: 13px;
color: var(--text-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.mobile-search-item-chevron {
color: var(--text-muted);
opacity: 0.4;
flex-shrink: 0;
}