summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/list.css
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-12-10 15:16:57 -0600
committerAdam <[email protected]>2025-12-10 15:17:04 -0600
commit58e66dd3d1dfd975195dac916fb4b23093404243 (patch)
treedff8b9aaf7026a4b74fd3f519bdf18374697f062 /packages/ui/src/components/list.css
parent190fa4c87aa2b3f954a419f716add1fc29e4011e (diff)
downloadopencode-58e66dd3d1dfd975195dac916fb4b23093404243.tar.gz
opencode-58e66dd3d1dfd975195dac916fb4b23093404243.zip
wip(desktop): progress
Diffstat (limited to 'packages/ui/src/components/list.css')
-rw-r--r--packages/ui/src/components/list.css107
1 files changed, 107 insertions, 0 deletions
diff --git a/packages/ui/src/components/list.css b/packages/ui/src/components/list.css
new file mode 100644
index 000000000..63d9a2fe1
--- /dev/null
+++ b/packages/ui/src/components/list.css
@@ -0,0 +1,107 @@
+[data-component="list"] {
+ display: flex;
+ flex-direction: column;
+ gap: 20px;
+
+ [data-slot="list-empty-state"] {
+ display: flex;
+ padding: 32px 0px;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ gap: 8px;
+ align-self: stretch;
+
+ [data-slot="list-message"] {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ gap: 2px;
+ color: var(--text-weak);
+ text-align: center;
+
+ /* text-14-regular */
+ font-family: var(--font-family-sans);
+ font-size: 14px;
+ font-style: normal;
+ font-weight: var(--font-weight-regular);
+ line-height: var(--line-height-large); /* 142.857% */
+ letter-spacing: var(--letter-spacing-normal);
+ }
+
+ [data-slot="list-filter"] {
+ color: var(--text-strong);
+ }
+ }
+
+ [data-slot="list-group"] {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+
+ [data-slot="list-header"] {
+ display: flex;
+ 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-base);
+
+ /* text-14-medium */
+ font-family: var(--font-family-sans);
+ font-size: 14px;
+ font-style: normal;
+ font-weight: var(--font-weight-medium);
+ line-height: var(--line-height-large); /* 142.857% */
+ letter-spacing: var(--letter-spacing-normal);
+ }
+
+ [data-slot="list-items"] {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ align-self: stretch;
+
+ [data-slot="list-item"] {
+ display: flex;
+ width: 100%;
+ height: 28px;
+ padding: 4px 10px;
+ align-items: center;
+ color: var(--text-strong);
+
+ /* text-14-medium */
+ font-family: var(--font-family-sans);
+ font-size: 14px;
+ font-style: normal;
+ font-weight: var(--font-weight-medium);
+ line-height: var(--line-height-large); /* 142.857% */
+ letter-spacing: var(--letter-spacing-normal);
+
+ [data-slot="list-item-selected-icon"] {
+ color: var(--icon-strong-base);
+ }
+ [data-slot="list-item-active-icon"] {
+ display: none;
+ color: var(--icon-strong-base);
+ }
+
+ &[data-active="true"] {
+ border-radius: var(--radius-md);
+ background: var(--surface-raised-base-hover);
+ [data-slot="list-item-active-icon"] {
+ display: block;
+ }
+ }
+ &:active {
+ background: var(--surface-raised-base-active);
+ }
+ }
+ }
+ }
+}