buddy-builder 1.4.6 → 1.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,154 @@
1
+ /* ═══ Terminal Bar ════════════════════════════════════════════════ */
2
+
3
+ .terminal-bar {
4
+ flex-shrink: 0;
5
+ display: flex;
6
+ flex-direction: column;
7
+ border-top: 1px solid var(--border-subtle);
8
+ background: var(--bg-0);
9
+ font-family: var(--font-mono, monospace);
10
+ font-size: 12px;
11
+ }
12
+
13
+ .terminal-resize-handle {
14
+ height: 5px;
15
+ flex-shrink: 0;
16
+ cursor: ns-resize;
17
+ position: relative;
18
+ background: var(--border-subtle);
19
+ transition: background 0.15s;
20
+ }
21
+
22
+ .terminal-resize-handle::after {
23
+ content: "";
24
+ position: absolute;
25
+ left: 50%;
26
+ top: 50%;
27
+ transform: translate(-50%, -50%);
28
+ width: 24px;
29
+ height: 2px;
30
+ border-radius: 1px;
31
+ background: var(--text-muted);
32
+ opacity: 0.3;
33
+ transition: opacity 0.15s;
34
+ }
35
+
36
+ .terminal-resize-handle:hover {
37
+ background: var(--border);
38
+ }
39
+
40
+ .terminal-resize-handle:hover::after {
41
+ opacity: 0.6;
42
+ }
43
+
44
+ .terminal-output {
45
+ overflow-y: auto;
46
+ padding: 6px 12px;
47
+ }
48
+
49
+ .terminal-output::-webkit-scrollbar { width: 4px; }
50
+
51
+ .terminal-entry {
52
+ margin-bottom: 4px;
53
+ }
54
+
55
+ .terminal-entry:last-child {
56
+ margin-bottom: 0;
57
+ }
58
+
59
+ .terminal-cmd {
60
+ color: var(--text);
61
+ font-weight: 500;
62
+ }
63
+
64
+ .terminal-prompt {
65
+ color: var(--accent);
66
+ margin-right: 6px;
67
+ user-select: none;
68
+ flex-shrink: 0;
69
+ }
70
+
71
+ .terminal-stdout {
72
+ margin: 2px 0 0;
73
+ padding: 0;
74
+ color: var(--text-secondary);
75
+ white-space: pre-wrap;
76
+ word-break: break-all;
77
+ font-family: inherit;
78
+ font-size: inherit;
79
+ line-height: 1.4;
80
+ }
81
+
82
+ .terminal-stderr {
83
+ margin: 2px 0 0;
84
+ padding: 0;
85
+ color: var(--error);
86
+ white-space: pre-wrap;
87
+ word-break: break-all;
88
+ font-family: inherit;
89
+ font-size: inherit;
90
+ line-height: 1.4;
91
+ }
92
+
93
+ .terminal-exit-code {
94
+ color: var(--error);
95
+ font-size: 10px;
96
+ opacity: 0.7;
97
+ margin-top: 2px;
98
+ }
99
+
100
+ .terminal-running {
101
+ color: var(--text-muted);
102
+ font-style: italic;
103
+ }
104
+
105
+ .terminal-input-row {
106
+ display: flex;
107
+ align-items: center;
108
+ padding: 5px 12px;
109
+ gap: 0;
110
+ }
111
+
112
+ .terminal-cwd {
113
+ font-size: 11px;
114
+ color: var(--text-muted);
115
+ margin-right: 8px;
116
+ max-width: 160px;
117
+ overflow: hidden;
118
+ text-overflow: ellipsis;
119
+ white-space: nowrap;
120
+ flex-shrink: 0;
121
+ }
122
+
123
+ .terminal-input {
124
+ flex: 1;
125
+ background: transparent;
126
+ border: none;
127
+ color: var(--text);
128
+ font-family: inherit;
129
+ font-size: inherit;
130
+ outline: none;
131
+ }
132
+
133
+ .terminal-input::placeholder {
134
+ color: var(--text-muted);
135
+ opacity: 0.5;
136
+ }
137
+
138
+ .terminal-input:disabled {
139
+ opacity: 0.5;
140
+ }
141
+
142
+ .terminal-collapse {
143
+ background: none;
144
+ border: none;
145
+ color: var(--text-muted);
146
+ cursor: pointer;
147
+ font-size: 10px;
148
+ padding: 2px 4px;
149
+ flex-shrink: 0;
150
+ }
151
+
152
+ .terminal-collapse:hover {
153
+ color: var(--text);
154
+ }
@@ -11,3 +11,4 @@
11
11
  @import url("styles/modal.css");
12
12
  @import url("styles/info-window.css");
13
13
  @import url("styles/status-bar.css");
14
+ @import url("styles/terminal.css");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buddy-builder",
3
- "version": "1.4.6",
3
+ "version": "1.4.8",
4
4
  "description": "A desktop GUI for Claude Code. Manage multiple sessions, search conversations, and work with AI — visually.",
5
5
  "main": "dist/main.cjs",
6
6
  "bin": {