@opencode-ai/ui 0.0.0-next-15312 → 0.0.0-next-15313
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
CHANGED
package/src/components/tabs.css
CHANGED
|
@@ -679,3 +679,22 @@
|
|
|
679
679
|
[data-component="tabs-drag-preview"] > * {
|
|
680
680
|
position: relative;
|
|
681
681
|
}
|
|
682
|
+
|
|
683
|
+
body[data-new-layout] #review-panel [data-component="tabs"],
|
|
684
|
+
body[data-new-layout] #terminal-panel [data-component="tabs"],
|
|
685
|
+
body[data-new-layout] #review-panel [data-component="tabs"][data-variant="normal"][data-orientation="horizontal"],
|
|
686
|
+
body[data-new-layout] #terminal-panel [data-component="tabs"][data-variant="normal"][data-orientation="horizontal"] {
|
|
687
|
+
background-color: var(--v2-background-bg-base);
|
|
688
|
+
|
|
689
|
+
[data-slot="tabs-list"] {
|
|
690
|
+
background-color: var(--v2-background-bg-base);
|
|
691
|
+
|
|
692
|
+
> .sticky {
|
|
693
|
+
background-color: var(--v2-background-bg-base);
|
|
694
|
+
|
|
695
|
+
&::before {
|
|
696
|
+
background: linear-gradient(90deg, transparent, var(--v2-background-bg-base));
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
}
|
|
@@ -112,8 +112,8 @@
|
|
|
112
112
|
color: var(--v2-text-text-base);
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
[data-component="icon-button-v2"][data-variant="ghost"]:is(:hover, [data-state="hover"]
|
|
116
|
-
|
|
115
|
+
[data-component="icon-button-v2"][data-variant="ghost"]:is(:hover, [data-state="hover"]):not(:disabled):not(
|
|
116
|
+
[data-expanded]
|
|
117
117
|
) {
|
|
118
118
|
background-color: var(--v2-overlay-simple-overlay-hover);
|
|
119
119
|
}
|
|
@@ -122,6 +122,10 @@
|
|
|
122
122
|
background-color: var(--v2-overlay-simple-overlay-pressed);
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
+
[data-component="icon-button-v2"][data-variant="ghost"]:where([data-expanded]):not(:disabled) {
|
|
126
|
+
background-color: var(--v2-overlay-simple-overlay-pressed);
|
|
127
|
+
}
|
|
128
|
+
|
|
125
129
|
[data-component="icon-button-v2"][data-variant="ghost"]:is(:disabled, [data-state="disabled"]) {
|
|
126
130
|
opacity: 0.5;
|
|
127
131
|
cursor: not-allowed;
|
|
@@ -133,8 +137,8 @@
|
|
|
133
137
|
color: var(--v2-icon-icon-muted);
|
|
134
138
|
}
|
|
135
139
|
|
|
136
|
-
[data-component="icon-button-v2"][data-variant="ghost-muted"]:is(:hover, [data-state="hover"]
|
|
137
|
-
|
|
140
|
+
[data-component="icon-button-v2"][data-variant="ghost-muted"]:is(:hover, [data-state="hover"]):not(:disabled):not(
|
|
141
|
+
[data-expanded]
|
|
138
142
|
) {
|
|
139
143
|
background-color: var(--v2-overlay-simple-overlay-hover);
|
|
140
144
|
}
|