mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-25 04:37:13 -05:00
New user search & dialog (#2270)
* From scrims * wip * wip * wip * wip * WIP * wip * wip * wip * wip * wip * import ordering
This commit is contained in:
57
app/components/elements/UserSearch.module.css
Normal file
57
app/components/elements/UserSearch.module.css
Normal file
@@ -0,0 +1,57 @@
|
||||
.item {
|
||||
font-size: var(--fonts-xsm);
|
||||
font-weight: var(--semi-bold);
|
||||
white-space: pre-wrap;
|
||||
padding: var(--s-1-5);
|
||||
border-radius: var(--rounded-sm);
|
||||
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;
|
||||
}
|
||||
|
||||
.selectValue {
|
||||
max-width: calc(var(--select-width) - 55px);
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--s-2);
|
||||
}
|
||||
|
||||
button:disabled .selectValue {
|
||||
color: var(--text-lighter);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.placeholder {
|
||||
font-size: var(--fonts-xs);
|
||||
font-weight: var(--semi-bold);
|
||||
color: var(--text-lighter);
|
||||
text-align: center;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
height: 162px;
|
||||
margin-block: var(--s-4);
|
||||
}
|
||||
|
||||
.itemAdditionalText {
|
||||
font-size: var(--fonts-xxsm);
|
||||
color: var(--text-lighter);
|
||||
}
|
||||
|
||||
button .itemAdditionalText {
|
||||
display: none;
|
||||
}
|
||||
Reference in New Issue
Block a user