sendou.ink/app/components/elements/SearchSelect.module.css
Kalle 6e987d506f
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
Tournament layout refresh, improve admin experience (#3152)
2026-06-11 18:31:10 +03:00

72 lines
1.1 KiB
CSS

.item {
font-size: var(--font-sm);
font-weight: var(--weight-semi);
padding: var(--s-1-5);
border-radius: var(--radius-field);
height: 33px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: flex;
align-items: center;
gap: var(--s-2);
}
.popover {
min-height: 250px;
}
.itemTextsContainer {
line-height: 1.1;
font-size: var(--font-sm);
& span {
max-width: 175px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
display: block;
}
}
.selectValue {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
display: flex;
align-items: center;
gap: var(--s-2);
}
button:disabled .selectValue {
color: var(--color-text-high);
font-style: italic;
}
.placeholder {
font-size: var(--font-xs);
font-weight: var(--weight-semi);
color: var(--color-text-high);
text-align: center;
display: grid;
place-items: center;
height: 162px;
margin-block: var(--s-4);
}
.itemAdditionalText {
font-size: var(--font-xs);
color: var(--color-text-high);
}
button .itemAdditionalText {
display: none;
}
.logo {
width: 24px;
height: 24px;
border-radius: var(--radius-field);
object-fit: cover;
}