项目文件夹

文件
wehub-resource-sync 98e40dac97
CLI Smoke Test / smoke-test-linux (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-linux (24) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (24) (push) Has been cancelled
Expo App TypeScript typecheck / typecheck (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:40:49 +08:00

36 行
805 B
CSS

.select-button {
display: inline-flex;
align-items: center;
justify-content: space-between;
gap: 8px;
height: 28px;
padding: 0 8px;
border: 1px solid transparent;
border-radius: 12.5px;
color: var(--color-text-foreground);
background: var(--color-button-bg);
font-size: var(--text-base);
line-height: 18px;
white-space: nowrap;
transition:
background 120ms ease,
border-color 120ms ease;
}
.select-button:hover,
.select-button:focus-visible {
background: var(--color-button-hover);
border-color: var(--color-border);
}
.select-button:focus-visible {
outline: 2px solid var(--color-border-focus);
outline-offset: 2px;
}
.select-button__label {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}