Remove all build artifacts from git tracking

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Mario Zechner 2025-06-16 04:02:27 +02:00
parent 56edbebe4c
commit 48ce0c6b98
4 changed files with 10 additions and 13 deletions

View file

@ -72,12 +72,12 @@ let FileBrowser = class FileBrowser extends LitElement {
return html `
<div class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center" style="z-index: 9999;">
<div class="bg-vs-bg-secondary border border-vs-border font-mono text-sm w-96 h-96 flex flex-col">
<div class="p-4 border-b border-vs-border">
<div class="p-4 border-b border-vs-border flex-shrink-0">
<div class="text-vs-assistant text-sm mb-2">Select Directory</div>
<div class="text-vs-muted text-sm break-all">${this.currentPath}</div>
</div>
<div class="p-4 h-64 overflow-y-auto">
<div class="p-4 flex-1 overflow-y-auto">
${this.loading ? html `
<div class="text-vs-muted">Loading...</div>
` : html `
@ -110,7 +110,7 @@ let FileBrowser = class FileBrowser extends LitElement {
`}
</div>
<div class="p-4 border-t border-vs-border flex gap-4 justify-end">
<div class="p-4 border-t border-vs-border flex gap-4 justify-end flex-shrink-0">
<button
class="bg-vs-muted text-vs-bg hover:bg-vs-text font-mono px-4 py-2 border-none"
@click=${this.handleCancel}

File diff suppressed because one or more lines are too long

View file

@ -149,23 +149,20 @@ let SessionList = class SessionList extends LitElement {
<div class="flex justify-between items-center px-3 py-2 border-b border-vs-border">
<div class="text-vs-text text-xs font-mono truncate pr-2 flex-1">${session.command}</div>
<button
class="bg-vs-warning text-vs-bg hover:bg-vs-highlight font-mono px-1 py-0.5 border-none text-xs disabled:opacity-50 flex-shrink-0 rounded"
class="bg-vs-warning text-vs-bg hover:bg-vs-highlight font-mono px-2 py-0.5 border-none text-xs disabled:opacity-50 flex-shrink-0 rounded"
@click=${(e) => this.handleKillSession(e, session.id)}
?disabled=${this.killingSessionIds.has(session.id)}
>
${this.killingSessionIds.has(session.id) ? '...' : 'x'}
${this.killingSessionIds.has(session.id) ? 'killing...' : 'kill'}
</button>
</div>
<!-- Asciinema player (main content) -->
<div class="session-preview">
<div class="session-preview bg-black flex items-center justify-center" style="aspect-ratio: 640/480;">
${this.loadedSnapshots.has(session.id) ? html `
<div id="player-${session.id}" class="bg-black" style="height: 120px; overflow: hidden;"></div>
<div id="player-${session.id}" class="w-full h-full" style="overflow: hidden;"></div>
` : html `
<div
class="bg-black flex items-center justify-center text-vs-muted text-xs"
style="height: 120px;"
>
<div class="text-vs-muted text-xs">
${this.loadingSnapshots.has(session.id) ? 'Loading...' : 'Loading...'}
</div>
`}

File diff suppressed because one or more lines are too long