summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/select-dialog.css
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-12-10 06:26:24 -0600
committerAdam <[email protected]>2025-12-10 15:17:02 -0600
commit6866a060bc48031ecc3b0f7c1c1e99f6961a4cb1 (patch)
treee531125deb8ec5134f8fbbaad6b87ddf2ad1a2b7 /packages/ui/src/components/select-dialog.css
parenta4ec619c74318c499c61c3198a3f82e9262cc7e5 (diff)
downloadopencode-6866a060bc48031ecc3b0f7c1c1e99f6961a4cb1.tar.gz
opencode-6866a060bc48031ecc3b0f7c1c1e99f6961a4cb1.zip
wip(desktop): progress
Diffstat (limited to 'packages/ui/src/components/select-dialog.css')
-rw-r--r--packages/ui/src/components/select-dialog.css28
1 files changed, 21 insertions, 7 deletions
diff --git a/packages/ui/src/components/select-dialog.css b/packages/ui/src/components/select-dialog.css
index 6263cee67..6b78639a8 100644
--- a/packages/ui/src/components/select-dialog.css
+++ b/packages/ui/src/components/select-dialog.css
@@ -1,3 +1,12 @@
+[data-slot="select-dialog-content"] {
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ overflow: hidden;
+ gap: 12px;
+ padding: 0 10px;
+}
+
[data-component="select-dialog-input"] {
display: flex;
height: 40px;
@@ -29,11 +38,11 @@
[data-component="select-dialog"] {
display: flex;
flex-direction: column;
- gap: 8px;
+ gap: 12px;
[data-slot="select-dialog-empty-state"] {
display: flex;
- padding: 32px 160px;
+ padding: 32px 0px;
flex-direction: column;
justify-content: center;
align-items: center;
@@ -63,25 +72,30 @@
}
[data-slot="select-dialog-group"] {
+ position: relative;
display: flex;
flex-direction: column;
gap: 4px;
[data-slot="select-dialog-header"] {
display: flex;
- padding: 4px 8px;
+ height: 28px;
+ padding: 0 10px;
justify-content: space-between;
align-items: center;
align-self: stretch;
+ background: var(--surface-raised-stronger-non-alpha);
+ position: sticky;
+ top: 0;
- color: var(--text-weak);
+ color: var(--text-base);
- /* text-12-medium */
+ /* text-14-medium */
font-family: var(--font-family-sans);
- font-size: var(--font-size-small);
+ font-size: 14px;
font-style: normal;
font-weight: var(--font-weight-medium);
- line-height: var(--line-height-large); /* 166.667% */
+ line-height: var(--line-height-large); /* 142.857% */
letter-spacing: var(--letter-spacing-normal);
}