summaryrefslogtreecommitdiffhomepage
path: root/packages/tui/internal/components/dialog
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-06-19 11:41:23 -0500
committeradamdottv <[email protected]>2025-06-19 11:41:30 -0500
commit4cdc86612cc100afa8775432108c6a48a374d991 (patch)
treeffd93afbefc1d6511e83caf7879bbb5f1fda91f9 /packages/tui/internal/components/dialog
parentf1f3f8d12c2cbf2e8f96e7b9d99cdc196e5a78a9 (diff)
downloadopencode-4cdc86612cc100afa8775432108c6a48a374d991.tar.gz
opencode-4cdc86612cc100afa8775432108c6a48a374d991.zip
fix(tui): overlay border backgrounds
Diffstat (limited to 'packages/tui/internal/components/dialog')
-rw-r--r--packages/tui/internal/components/dialog/complete.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/packages/tui/internal/components/dialog/complete.go b/packages/tui/internal/components/dialog/complete.go
index ba99e7f04..e73afed01 100644
--- a/packages/tui/internal/components/dialog/complete.go
+++ b/packages/tui/internal/components/dialog/complete.go
@@ -6,7 +6,6 @@ import (
"github.com/charmbracelet/bubbles/v2/key"
"github.com/charmbracelet/bubbles/v2/textarea"
tea "github.com/charmbracelet/bubbletea/v2"
- "github.com/charmbracelet/lipgloss/v2"
"github.com/sst/opencode/internal/app"
"github.com/sst/opencode/internal/components/list"
"github.com/sst/opencode/internal/styles"
@@ -203,13 +202,6 @@ func (c *completionDialogComponent) View() string {
return baseStyle.Padding(0, 0).
Background(t.BackgroundElement()).
- Border(lipgloss.ThickBorder()).
- BorderTop(false).
- BorderBottom(false).
- BorderRight(true).
- BorderLeft(true).
- BorderBackground(t.Background()).
- BorderForeground(t.BackgroundElement()).
Width(c.width).
Render(c.list.View())
}