@theia/core 1.38.0-next.32 → 1.38.0-next.40
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/README.md +6 -6
- package/lib/browser/common-frontend-contribution.js +3 -3
- package/lib/browser/common-frontend-contribution.js.map +1 -1
- package/lib/browser/common-styling-participants.d.ts.map +1 -1
- package/lib/browser/common-styling-participants.js +20 -0
- package/lib/browser/common-styling-participants.js.map +1 -1
- package/lib/browser/core-preferences.js +1 -1
- package/lib/browser/core-preferences.js.map +1 -1
- package/lib/common/severity.js +1 -1
- package/lib/common/severity.js.map +1 -1
- package/package.json +4 -4
- package/src/browser/common-frontend-contribution.ts +3 -3
- package/src/browser/common-styling-participants.ts +20 -0
- package/src/browser/core-preferences.ts +1 -1
- package/src/common/i18n/nls.metadata.json +16592 -14032
- package/src/common/severity.ts +1 -1
|
@@ -182,12 +182,19 @@ export class TabbarStylingParticipant implements StylingParticipant {
|
|
|
182
182
|
|
|
183
183
|
if (highContrast && focusBorder) {
|
|
184
184
|
collector.addRule(`
|
|
185
|
+
#theia-bottom-content-panel .p-TabBar .p-TabBar-tab,
|
|
185
186
|
#theia-main-content-panel .p-TabBar .p-TabBar-tab {
|
|
186
187
|
outline-offset: -4px;
|
|
187
188
|
}
|
|
189
|
+
#theia-bottom-content-panel .p-TabBar .p-TabBar-tab.p-mod-current,
|
|
188
190
|
#theia-main-content-panel .p-TabBar .p-TabBar-tab.p-mod-current {
|
|
189
191
|
outline: 1px solid ${focusBorder};
|
|
190
192
|
}
|
|
193
|
+
#theia-bottom-content-panel .p-TabBar:not(.theia-tabBar-active) .p-TabBar-tab.p-mod-current,
|
|
194
|
+
#theia-main-content-panel .p-TabBar:not(.theia-tabBar-active) .p-TabBar-tab.p-mod-current {
|
|
195
|
+
outline: 1px dotted ${focusBorder};
|
|
196
|
+
}
|
|
197
|
+
#theia-bottom-content-panel .p-TabBar .p-TabBar-tab:not(.p-mod-current):hover,
|
|
191
198
|
#theia-main-content-panel .p-TabBar .p-TabBar-tab:not(.p-mod-current):hover {
|
|
192
199
|
outline: 1px dashed ${focusBorder};
|
|
193
200
|
}
|
|
@@ -237,6 +244,19 @@ export class TabbarStylingParticipant implements StylingParticipant {
|
|
|
237
244
|
`);
|
|
238
245
|
}
|
|
239
246
|
|
|
247
|
+
// Activity Bar Active Border
|
|
248
|
+
const activityBarActiveBorder = theme.getColor('activityBar.activeBorder') || 'var(--theia-activityBar-foreground)';
|
|
249
|
+
collector.addRule(`
|
|
250
|
+
.p-TabBar.theia-app-left .p-TabBar-tab.p-mod-current {
|
|
251
|
+
border-top-color: transparent;
|
|
252
|
+
box-shadow: 2px 0 0 ${activityBarActiveBorder} inset;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.p-TabBar.theia-app-right .p-TabBar-tab.p-mod-current {
|
|
256
|
+
border-top-color: transparent;
|
|
257
|
+
box-shadow: -2px 0 0 ${activityBarActiveBorder} inset;
|
|
258
|
+
}
|
|
259
|
+
`);
|
|
240
260
|
// Hover Background
|
|
241
261
|
const tabHoverBackground = theme.getColor('tab.hoverBackground');
|
|
242
262
|
if (tabHoverBackground) {
|
|
@@ -175,7 +175,7 @@ export const corePreferenceSchema: PreferenceSchema = {
|
|
|
175
175
|
},
|
|
176
176
|
'workbench.editor.revealIfOpen': {
|
|
177
177
|
'type': 'boolean',
|
|
178
|
-
'description': nls.localizeByDefault('Controls whether an editor is revealed in any of the visible groups if opened. If disabled, an editor will prefer to open in the currently active editor group. If enabled, an already opened editor will be revealed instead of opened again in the currently active editor group. Note that there are some cases where this setting is ignored,
|
|
178
|
+
'description': nls.localizeByDefault('Controls whether an editor is revealed in any of the visible groups if opened. If disabled, an editor will prefer to open in the currently active editor group. If enabled, an already opened editor will be revealed instead of opened again in the currently active editor group. Note that there are some cases where this setting is ignored, such as when forcing an editor to open in a specific group or to the side of the currently active group.'),
|
|
179
179
|
'default': false
|
|
180
180
|
},
|
|
181
181
|
'workbench.commandPalette.history': {
|