chore: refactor composer/dock components (#14328)

This commit is contained in:
Adam
2026-02-19 15:02:45 -06:00
committed by GitHub
parent f8dad0ae17
commit 49cc872c44
18 changed files with 1074 additions and 364 deletions

View File

@@ -0,0 +1,23 @@
[data-dock-surface="shell"] {
background-color: var(--surface-raised-stronger-non-alpha);
box-shadow: var(--shadow-xs-border);
position: relative;
z-index: 10;
border-radius: 12px;
overflow: clip;
}
[data-dock-surface="tray"] {
background-color: var(--background-base);
border: 1px solid var(--border-weak-base);
position: relative;
z-index: 0;
border-radius: 12px;
overflow: clip;
}
[data-dock-surface="tray"][data-dock-attach="top"] {
margin-top: -0.875rem;
border-top-left-radius: 0;
border-top-right-radius: 0;
}