Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

appview/piplines/ssh: remove uncessary bgs

this can only cause more issues with terminal themes

Signed-off-by: oppiliappan <me@oppi.li>

oppiliappan (May 26, 2026, 2:18 PM +0100) bd4ceb77 79543858

+2 -3
+2 -3
appview/pipelines/ssh/tui.go
··· 302 302 // renderLogs builds the full log content string for a workflow, used as viewport content. 303 303 func renderLogs(r *lipgloss.Renderer, wl *workflowLogs, width int) string { 304 304 headerStyle := r.NewStyle().Foreground(colorWhite).Background(colorBrightBlack).Bold(true) 305 - cmdStyle := r.NewStyle().Foreground(colorBlue).Background(colorDarkGrey).Width(width) 306 - lineStyle := r.NewStyle().Foreground(colorWhite).Background(colorDarkGrey).Width(width) 305 + cmdStyle := r.NewStyle().Foreground(colorBlue).Width(width) 307 306 now := time.Now() 308 307 var sb strings.Builder 309 308 for i := range wl.steps { ··· 322 321 sb.WriteString(cmdStyle.Render(st.command) + "\n") 323 322 } 324 323 for _, l := range st.lines { 325 - sb.WriteString(lineStyle.Render(l) + "\n") 324 + sb.WriteString(l + "\n") 326 325 } 327 326 sb.WriteString("\n") 328 327 }