Prepare v0.1.0 release

This commit is contained in:
2026-06-24 20:00:11 +02:00
parent 934c6f25d8
commit 993f744c19
9 changed files with 134 additions and 113 deletions

View File

@@ -59,7 +59,7 @@
flex: 1 1 auto;
min-height: 0;
overflow: auto;
padding: 10px 8px 16px;
padding: 0px 0px 16px;
}
.file-tree-space + .file-tree-space {
@@ -73,7 +73,7 @@
grid-template-columns: 26px minmax(0, 1fr);
align-items: center;
gap: 2px;
border-radius: 9px;
border-radius: 0px;
}
.file-tree-node,
@@ -90,7 +90,7 @@
place-items: center;
width: 26px;
height: 32px;
border-radius: 9px;
border-radius: 0px;
color: var(--muted);
}
@@ -106,7 +106,7 @@
min-width: 0;
width: 100%;
padding: 8px 9px;
border-radius: 9px;
border-radius: 0px;
font: inherit;
text-align: left;
user-select: none;
@@ -137,7 +137,7 @@
.file-tree-root:hover:not(:disabled),
.file-tree-root:focus-visible,
.file-tree-root.is-active {
background: rgba(13, 110, 253, .08);
background: var(--line);
outline: none;
}
@@ -149,8 +149,8 @@
.file-tree-node-wrap.is-drop-target,
.file-tree-root.is-drop-target {
background: rgba(13, 110, 253, .14);
box-shadow: inset 0 0 0 2px rgba(13, 110, 253, .28);
background: var(--line);
box-shadow: inset 0 0 0 2px var(--line-dark);
}
.file-tree-node-wrap.is-selected .file-tree-select {
@@ -240,8 +240,8 @@
.file-list-drop-target.is-active,
.file-list-drop-target.is-drop-target {
background: rgba(13, 110, 253, .05);
box-shadow: inset 0 0 0 2px rgba(13, 110, 253, .22);
background: var(--line);
box-shadow: inset 0 0 0 2px var(--line-dark);
}
.file-list-table {
@@ -295,18 +295,18 @@
}
.file-list-row:focus-visible {
outline: 2px solid rgba(13, 110, 253, .35);
outline: 2px solid var(--line-dark);
outline-offset: -2px;
}
.file-list-row:hover,
.file-list-row.is-selected {
background: rgba(13, 110, 253, .07);
background: var(--line);
}
.file-list-row.is-drop-target {
background: rgba(13, 110, 253, .13);
box-shadow: inset 0 0 0 2px rgba(13, 110, 253, .28);
background: var(--line);
box-shadow: inset 0 0 0 2px var(--line-dark);
}
.file-parent-row.is-disabled {