@opencode-ai/ui 0.0.0-dev-202607050159 → 0.0.0-dev-202607050218
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.
- package/package.json +1 -1
- package/src/components/tabs.css +47 -1
package/package.json
CHANGED
package/src/components/tabs.css
CHANGED
|
@@ -135,7 +135,8 @@
|
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
-
#review-panel &[data-variant="normal"][data-orientation="horizontal"]
|
|
138
|
+
#review-panel &[data-variant="normal"][data-orientation="horizontal"],
|
|
139
|
+
#terminal-panel &[data-variant="normal"][data-orientation="horizontal"] {
|
|
139
140
|
background-color: var(--background-stronger);
|
|
140
141
|
|
|
141
142
|
[data-slot="tabs-list"] {
|
|
@@ -267,6 +268,51 @@
|
|
|
267
268
|
}
|
|
268
269
|
}
|
|
269
270
|
|
|
271
|
+
#terminal-panel &[data-variant="normal"][data-orientation="horizontal"] {
|
|
272
|
+
[data-slot="tabs-list"] {
|
|
273
|
+
height: 52px;
|
|
274
|
+
padding-right: 12px;
|
|
275
|
+
gap: 8px;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
[data-slot="tabs-trigger-wrapper"] {
|
|
279
|
+
height: 28px;
|
|
280
|
+
padding-inline: 8px;
|
|
281
|
+
border: 0;
|
|
282
|
+
background-color: transparent;
|
|
283
|
+
box-shadow: none;
|
|
284
|
+
|
|
285
|
+
&::after {
|
|
286
|
+
display: none;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
[data-slot="tabs-trigger"] {
|
|
290
|
+
padding: 0 !important;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
&:has([data-slot="tabs-trigger-close-button"]) {
|
|
294
|
+
padding-right: 8px;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
&:has([data-selected]) {
|
|
298
|
+
background-color: var(--v2-background-bg-layer-01);
|
|
299
|
+
box-shadow: inset 0 0 0 0.5px var(--v2-border-border-muted);
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
[data-slot="terminal-tab-title"] {
|
|
304
|
+
font-family: Inter, sans-serif;
|
|
305
|
+
font-style: normal;
|
|
306
|
+
font-weight: 440;
|
|
307
|
+
font-size: 13px;
|
|
308
|
+
line-height: 16px;
|
|
309
|
+
letter-spacing: -0.04px;
|
|
310
|
+
color: var(--v2-text-text-base);
|
|
311
|
+
font-variation-settings: "slnt" 0;
|
|
312
|
+
font-variant-numeric: tabular-nums;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
270
316
|
&[data-variant="alt"] {
|
|
271
317
|
[data-slot="tabs-list"] {
|
|
272
318
|
padding-left: 24px;
|