refactor Select component to use settings variant for settings modal styling

This commit is contained in:
David Hill
2026-01-20 21:52:50 +00:00
parent 575cc59b37
commit 7be6671e6e
5 changed files with 92 additions and 47 deletions

View File

@@ -1583,7 +1583,6 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
onSelect={local.agent.set} onSelect={local.agent.set}
class="capitalize" class="capitalize"
variant="ghost" variant="ghost"
triggerVariant="button"
/> />
</TooltipKeybind> </TooltipKeybind>
<Show <Show

View File

@@ -69,6 +69,7 @@ export const SettingsGeneral: Component = () => {
}} }}
variant="secondary" variant="secondary"
size="small" size="small"
triggerVariant="settings"
/> />
</SettingsRow> </SettingsRow>
@@ -99,6 +100,7 @@ export const SettingsGeneral: Component = () => {
}} }}
variant="secondary" variant="secondary"
size="small" size="small"
triggerVariant="settings"
/> />
</SettingsRow> </SettingsRow>
@@ -111,6 +113,7 @@ export const SettingsGeneral: Component = () => {
onSelect={(option) => option && settings.appearance.setFont(option.value)} onSelect={(option) => option && settings.appearance.setFont(option.value)}
variant="secondary" variant="secondary"
size="small" size="small"
triggerVariant="settings"
triggerStyle={{ "font-family": monoFontFamily(settings.appearance.font()), "min-width": "180px" }} triggerStyle={{ "font-family": monoFontFamily(settings.appearance.font()), "min-width": "180px" }}
> >
{(option) => <span style={{ "font-family": monoFontFamily(option?.value) }}>{option?.label}</span>} {(option) => <span style={{ "font-family": monoFontFamily(option?.value) }}>{option?.label}</span>}
@@ -172,6 +175,7 @@ export const SettingsGeneral: Component = () => {
}} }}
variant="secondary" variant="secondary"
size="small" size="small"
triggerVariant="settings"
/> />
</SettingsRow> </SettingsRow>
@@ -192,6 +196,7 @@ export const SettingsGeneral: Component = () => {
}} }}
variant="secondary" variant="secondary"
size="small" size="small"
triggerVariant="settings"
/> />
</SettingsRow> </SettingsRow>
@@ -212,6 +217,7 @@ export const SettingsGeneral: Component = () => {
}} }}
variant="secondary" variant="secondary"
size="small" size="small"
triggerVariant="settings"
/> />
</SettingsRow> </SettingsRow>
</div> </div>

View File

@@ -129,6 +129,7 @@ export const SettingsPermissions: Component = () => {
onSelect={(option) => option && setPermission(item.id, option.value)} onSelect={(option) => option && setPermission(item.id, option.value)}
variant="secondary" variant="secondary"
size="small" size="small"
triggerVariant="settings"
/> />
</SettingsRow> </SettingsRow>
)} )}

View File

@@ -1,70 +1,89 @@
[data-component="select"] { [data-component="select"] {
[data-slot="select-select-trigger"] { [data-slot="select-select-trigger"] {
padding: 6px 6px 6px 12px; padding: 0 4px 0 8px;
box-shadow: none; box-shadow: none;
border-radius: 6px;
min-width: 160px;
height: 32px;
justify-content: flex-end;
gap: 12px;
background-color: transparent;
[data-slot="select-select-trigger-value"] { [data-slot="select-select-trigger-value"] {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
font-size: var(--font-size-base);
font-weight: var(--font-weight-regular);
} }
[data-slot="select-select-trigger-icon"] { [data-slot="select-select-trigger-icon"] {
width: 16px; width: 16px;
height: 20px; height: 16px;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
flex-shrink: 0; flex-shrink: 0;
color: var(--text-weak); color: var(--text-weak);
background-color: var(--surface-raised-base);
border-radius: 4px;
transition: transform 0.1s ease-in-out; transition: transform 0.1s ease-in-out;
} }
&[data-slot="select-select-trigger"]:hover:not(:disabled), &[data-expanded] {
&[data-slot="select-select-trigger"][data-expanded], &[data-variant="secondary"] {
&[data-slot="select-select-trigger"][data-expanded]:hover:not(:disabled) { background-color: var(--button-secondary-hover);
background-color: var(--input-base); }
box-shadow: var(--shadow-xs-border-base); &[data-variant="ghost"] {
background-color: var(--surface-raised-base-active);
}
&[data-variant="primary"] {
background-color: var(--icon-strong-active);
}
} }
&:not([data-expanded]):focus { &:not([data-expanded]):focus {
background-color: transparent; &[data-variant="secondary"] {
box-shadow: none; background-color: var(--button-secondary-base);
}
&[data-variant="ghost"] {
background-color: transparent;
}
&[data-variant="primary"] {
background-color: var(--icon-strong-base);
}
} }
} }
&[data-trigger-style="button"] { &[data-trigger-style="settings"] {
[data-slot="select-select-trigger"] { [data-slot="select-select-trigger"] {
padding: 0 6px; padding: 6px 6px 6px 12px;
min-width: auto; box-shadow: none;
height: 24px; border-radius: 6px;
justify-content: center; min-width: 160px;
gap: 6px; height: 32px;
justify-content: flex-end;
gap: 12px;
background-color: transparent;
[data-slot="select-select-trigger-value"] {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: var(--font-size-base);
font-weight: var(--font-weight-regular);
}
[data-slot="select-select-trigger-icon"] { [data-slot="select-select-trigger-icon"] {
width: auto; width: 16px;
height: auto; height: 20px;
background-color: transparent; display: flex;
border-radius: 0; align-items: center;
} justify-content: center;
flex-shrink: 0;
&[data-slot="select-select-trigger"]:hover:not(:disabled) { color: var(--text-weak);
background-color: var(--surface-raised-base-hover); background-color: var(--surface-raised-base);
box-shadow: none; border-radius: 4px;
transition: transform 0.1s ease-in-out;
} }
&[data-slot="select-select-trigger"]:hover:not(:disabled),
&[data-slot="select-select-trigger"][data-expanded], &[data-slot="select-select-trigger"][data-expanded],
&[data-slot="select-select-trigger"][data-expanded]:hover:not(:disabled) { &[data-slot="select-select-trigger"][data-expanded]:hover:not(:disabled) {
background-color: var(--surface-raised-base-active); background-color: var(--input-base);
box-shadow: var(--shadow-xs-border-base);
}
&:not([data-expanded]):focus {
background-color: transparent;
box-shadow: none; box-shadow: none;
} }
} }
@@ -72,12 +91,12 @@
} }
[data-component="select-content"] { [data-component="select-content"] {
min-width: 160px; min-width: 104px;
max-width: 23rem; max-width: 23rem;
overflow: hidden; overflow: hidden;
border-radius: 8px; border-radius: var(--radius-md);
background-color: var(--surface-raised-stronger-non-alpha); background-color: var(--surface-raised-stronger-non-alpha);
padding: 0; padding: 4px;
box-shadow: var(--shadow-xs-border); box-shadow: var(--shadow-xs-border);
z-index: 60; z-index: 60;
@@ -92,7 +111,6 @@
overflow-x: hidden; overflow-x: hidden;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: 4px;
&:focus { &:focus {
outline: none; outline: none;
@@ -112,12 +130,12 @@
border-radius: 4px; border-radius: 4px;
cursor: default; cursor: default;
/* text-14-regular */ /* text-12-medium */
font-family: var(--font-family-sans); font-family: var(--font-family-sans);
font-size: var(--font-size-base); font-size: var(--font-size-small);
font-style: normal; font-style: normal;
font-weight: var(--font-weight-regular); font-weight: var(--font-weight-medium);
line-height: var(--line-height-large); line-height: var(--line-height-large); /* 166.667% */
letter-spacing: var(--letter-spacing-normal); letter-spacing: var(--letter-spacing-normal);
color: var(--text-strong); color: var(--text-strong);
@@ -152,6 +170,26 @@
} }
} }
[data-component="select-content"][data-trigger-style="settings"] {
min-width: 160px;
border-radius: 8px;
padding: 0;
[data-slot="select-select-content-list"] {
padding: 4px;
}
[data-slot="select-select-item"] {
/* text-14-regular */
font-family: var(--font-family-sans);
font-size: var(--font-size-base);
font-style: normal;
font-weight: var(--font-weight-regular);
line-height: var(--line-height-large);
letter-spacing: var(--letter-spacing-normal);
}
}
@keyframes select-open { @keyframes select-open {
from { from {
opacity: 0; opacity: 0;

View File

@@ -17,7 +17,7 @@ export type SelectProps<T> = Omit<ComponentProps<typeof Kobalte<T>>, "value" | "
classList?: ComponentProps<"div">["classList"] classList?: ComponentProps<"div">["classList"]
children?: (item: T | undefined) => JSX.Element children?: (item: T | undefined) => JSX.Element
triggerStyle?: JSX.CSSProperties triggerStyle?: JSX.CSSProperties
triggerVariant?: "default" | "button" triggerVariant?: "settings"
} }
export function Select<T>(props: SelectProps<T> & Omit<ButtonProps, "children">) { export function Select<T>(props: SelectProps<T> & Omit<ButtonProps, "children">) {
@@ -84,7 +84,7 @@ export function Select<T>(props: SelectProps<T> & Omit<ButtonProps, "children">)
{...others} {...others}
data-component="select" data-component="select"
data-trigger-style={local.triggerVariant} data-trigger-style={local.triggerVariant}
placement="bottom-end" placement={local.triggerVariant === "settings" ? "bottom-end" : "bottom-start"}
gutter={4} gutter={4}
value={local.current} value={local.current}
options={grouped()} options={grouped()}
@@ -148,7 +148,7 @@ export function Select<T>(props: SelectProps<T> & Omit<ButtonProps, "children">)
}} }}
</Kobalte.Value> </Kobalte.Value>
<Kobalte.Icon data-slot="select-select-trigger-icon"> <Kobalte.Icon data-slot="select-select-trigger-icon">
<Icon name={local.triggerVariant === "button" ? "chevron-down" : "selector"} size="small" /> <Icon name={local.triggerVariant === "settings" ? "selector" : "chevron-down"} size="small" />
</Kobalte.Icon> </Kobalte.Icon>
</Kobalte.Trigger> </Kobalte.Trigger>
<Kobalte.Portal> <Kobalte.Portal>
@@ -158,6 +158,7 @@ export function Select<T>(props: SelectProps<T> & Omit<ButtonProps, "children">)
[local.class ?? ""]: !!local.class, [local.class ?? ""]: !!local.class,
}} }}
data-component="select-content" data-component="select-content"
data-trigger-style={local.triggerVariant}
> >
<Kobalte.Listbox data-slot="select-select-content-list" /> <Kobalte.Listbox data-slot="select-select-content-list" />
</Kobalte.Content> </Kobalte.Content>