@codingame/monaco-vscode-walkthrough-service-override 20.5.0 → 21.0.1
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 +10 -10
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +28 -39
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +1 -11
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +49 -441
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedDetailsRenderer.js +23 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +4 -4
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.d.ts +1 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +5 -18
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/media/gettingStarted.css +0 -456
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +3 -10
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +157 -300
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small.js +4 -4
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +6 -5
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/media/gettingStarted.css
CHANGED
|
@@ -1069,459 +1069,3 @@
|
|
|
1069
1069
|
.monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .getting-started-checkbox {
|
|
1070
1070
|
border-color: var(--vscode-checkbox-border) !important;
|
|
1071
1071
|
}
|
|
1072
|
-
|
|
1073
|
-
/* Full width layout for the new slide design */
|
|
1074
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .gettingStartedSlideDetails .gettingStartedDetailsContent {
|
|
1075
|
-
height: 100%;
|
|
1076
|
-
max-width: 100%;
|
|
1077
|
-
margin: 0 auto;
|
|
1078
|
-
padding: 0 32px;
|
|
1079
|
-
display: flex;
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
/* Back button position */
|
|
1083
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .gettingStartedSlideDetails .gettingStartedDetailsContent > .prev-button {
|
|
1084
|
-
padding: 16px 32px 0;
|
|
1085
|
-
position: static;
|
|
1086
|
-
margin: 0;
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
/* Title area */
|
|
1090
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .gettingStartedSlideDetails .gettingStartedDetailsContent > .getting-started-category,
|
|
1091
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .category-header {
|
|
1092
|
-
grid-area: header;
|
|
1093
|
-
text-align: left;
|
|
1094
|
-
align-self: center;
|
|
1095
|
-
display: flex;
|
|
1096
|
-
flex-direction: column;
|
|
1097
|
-
flex-wrap: wrap;
|
|
1098
|
-
overflow: visible;
|
|
1099
|
-
white-space: wrap;
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
/* Steps container - takes most of the space */
|
|
1103
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .gettingStartedSlideDetails .gettingStartedDetailsContent > .steps-container {
|
|
1104
|
-
display: flex;
|
|
1105
|
-
flex: 1;
|
|
1106
|
-
flex-direction: column;
|
|
1107
|
-
justify-content: center;
|
|
1108
|
-
align-self: center;
|
|
1109
|
-
outline: none;
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
/* Hide the default media container */
|
|
1113
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .gettingStartedSlideDetails .gettingStartedDetailsContent > .getting-started-media {
|
|
1114
|
-
display: none;
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
/* Getting Started Steps Container */
|
|
1118
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .getting-started-steps-container {
|
|
1119
|
-
max-width: 1000px;
|
|
1120
|
-
max-height: 800px;
|
|
1121
|
-
margin: 0 auto;
|
|
1122
|
-
display: grid;
|
|
1123
|
-
padding-left: 10%;
|
|
1124
|
-
padding-right: 10%;
|
|
1125
|
-
grid-template-rows: 25% 60% 5% auto;
|
|
1126
|
-
grid-template-areas:
|
|
1127
|
-
"header"
|
|
1128
|
-
"slides"
|
|
1129
|
-
"dots"
|
|
1130
|
-
"footer";
|
|
1131
|
-
height: 100%;
|
|
1132
|
-
width: 100%;
|
|
1133
|
-
align-self: center;
|
|
1134
|
-
/* Center vertically in parent */
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.width-semi-constrained .getting-started-steps-container,
|
|
1138
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.width-semi-constrained .getting-started-steps-container {
|
|
1139
|
-
padding-left: 8px;
|
|
1140
|
-
padding-right: 8px;
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlideDetails h2 {
|
|
1144
|
-
font-size: 40px;
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
/* Step slides container */
|
|
1148
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-slides-container {
|
|
1149
|
-
grid-area: slides;
|
|
1150
|
-
margin: 0;
|
|
1151
|
-
overflow: hidden;
|
|
1152
|
-
flex: 1;
|
|
1153
|
-
width: 100%;
|
|
1154
|
-
height: 100%;
|
|
1155
|
-
transition: transform 0.25s, opacity 0.25s;
|
|
1156
|
-
padding-bottom: 16px;
|
|
1157
|
-
}
|
|
1158
|
-
|
|
1159
|
-
/* Individual slide styling */
|
|
1160
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-slide {
|
|
1161
|
-
min-width: 100%;
|
|
1162
|
-
height: 100%;
|
|
1163
|
-
box-sizing: border-box;
|
|
1164
|
-
display: flex;
|
|
1165
|
-
justify-content: center;
|
|
1166
|
-
align-items: center;
|
|
1167
|
-
transition: transform 0.25s, opacity 0.25s;
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
|
-
/* Two-column layout for slide content */
|
|
1171
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-slide-content {
|
|
1172
|
-
display: grid;
|
|
1173
|
-
grid-template-columns: 1fr 1fr;
|
|
1174
|
-
grid-template-areas: "text media";
|
|
1175
|
-
max-width: 1200px;
|
|
1176
|
-
width: 100%;
|
|
1177
|
-
height: 100%;
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
/* Left column - text content only */
|
|
1181
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-text-content {
|
|
1182
|
-
grid-area: text;
|
|
1183
|
-
display: flex;
|
|
1184
|
-
flex-direction: column;
|
|
1185
|
-
justify-content: center;
|
|
1186
|
-
min-height: 300px;
|
|
1187
|
-
height: 100%;
|
|
1188
|
-
flex-wrap: wrap;
|
|
1189
|
-
overflow: visible;
|
|
1190
|
-
white-space: wrap;
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
/* Right column - for media content */
|
|
1194
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-media-content {
|
|
1195
|
-
grid-area: media;
|
|
1196
|
-
display: flex;
|
|
1197
|
-
align-items: center;
|
|
1198
|
-
justify-content: center;
|
|
1199
|
-
min-height: 300px;
|
|
1200
|
-
height: 100%;
|
|
1201
|
-
width: 80%;
|
|
1202
|
-
}
|
|
1203
|
-
|
|
1204
|
-
/* Navigation buttons in dots container for newSlide scenario */
|
|
1205
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dots-container {
|
|
1206
|
-
width: 75%;
|
|
1207
|
-
max-width: 900px;
|
|
1208
|
-
margin: 12px auto;
|
|
1209
|
-
display: flex;
|
|
1210
|
-
justify-content: center;
|
|
1211
|
-
align-items: center;
|
|
1212
|
-
grid-area: dots;
|
|
1213
|
-
height: max-content;
|
|
1214
|
-
position: relative;
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
/* Center dots between navigation buttons */
|
|
1218
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dots-container .dots-centered {
|
|
1219
|
-
display: flex;
|
|
1220
|
-
gap: 32px;
|
|
1221
|
-
justify-content: center;
|
|
1222
|
-
align-items: center;
|
|
1223
|
-
width: max-content;
|
|
1224
|
-
flex: 1;
|
|
1225
|
-
margin: 0 8px;
|
|
1226
|
-
position: absolute;
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
|
-
/* Navigation buttons styling */
|
|
1230
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dots-container .button-link.navigation {
|
|
1231
|
-
display: flex;
|
|
1232
|
-
align-items: center;
|
|
1233
|
-
cursor: pointer;
|
|
1234
|
-
padding: 3px 12px;
|
|
1235
|
-
font-size: 16px;
|
|
1236
|
-
line-height: 1.5;
|
|
1237
|
-
border-radius: 4px;
|
|
1238
|
-
white-space: nowrap;
|
|
1239
|
-
flex-shrink: 0;
|
|
1240
|
-
position: absolute;
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
|
-
/* Make the back/next button icons larger */
|
|
1244
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dots-container .button-link.navigation .codicon {
|
|
1245
|
-
font-size: 18px;
|
|
1246
|
-
padding-left: 4px;
|
|
1247
|
-
padding-right: 4px;
|
|
1248
|
-
}
|
|
1249
|
-
|
|
1250
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dots-container .button-link.navigation.inactive {
|
|
1251
|
-
display: none;
|
|
1252
|
-
}
|
|
1253
|
-
|
|
1254
|
-
/* Remove auto margins that spread things out */
|
|
1255
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dots-container .button-link.back {
|
|
1256
|
-
margin: 0;
|
|
1257
|
-
position: absolute;
|
|
1258
|
-
left: 0;
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dots-container .button-link.next {
|
|
1262
|
-
margin: 0;
|
|
1263
|
-
position: absolute;
|
|
1264
|
-
right: 0;
|
|
1265
|
-
}
|
|
1266
|
-
|
|
1267
|
-
/* Left alignment for back button */
|
|
1268
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dots-container .button-link.back {
|
|
1269
|
-
margin-right: auto;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
/* Right alignment for next button */
|
|
1273
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dots-container .button-link.next {
|
|
1274
|
-
margin-left: auto;
|
|
1275
|
-
}
|
|
1276
|
-
|
|
1277
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dot {
|
|
1278
|
-
width: 12px;
|
|
1279
|
-
/* Increased from 13px */
|
|
1280
|
-
height: 12px;
|
|
1281
|
-
/* Increased from 13px */
|
|
1282
|
-
background-color: var(--vscode-button-secondaryBackground);
|
|
1283
|
-
border: none;
|
|
1284
|
-
border-radius: 50%;
|
|
1285
|
-
cursor: pointer;
|
|
1286
|
-
padding: 0;
|
|
1287
|
-
transition: transform 0.25s ease, background-color 0.25s ease;
|
|
1288
|
-
}
|
|
1289
|
-
|
|
1290
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dot:hover {
|
|
1291
|
-
transform: scale(1.2);
|
|
1292
|
-
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-dot.active {
|
|
1296
|
-
background-color: var(--vscode-button-background);
|
|
1297
|
-
width: 16px;
|
|
1298
|
-
height: 16px;
|
|
1299
|
-
}
|
|
1300
|
-
|
|
1301
|
-
/* Footer area */
|
|
1302
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .gettingStartedSlideDetails .gettingStartedDetailsContent > .getting-started-footer,
|
|
1303
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .getting-started-footer {
|
|
1304
|
-
grid-area: footer;
|
|
1305
|
-
align-self: flex-end;
|
|
1306
|
-
justify-self: center;
|
|
1307
|
-
text-align: center;
|
|
1308
|
-
flex-direction: column;
|
|
1309
|
-
align-items: center;
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
|
-
/* Step title styling */
|
|
1313
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide h3.step-title {
|
|
1314
|
-
font-size: 2.25em;
|
|
1315
|
-
/* Increased from 1.5em */
|
|
1316
|
-
margin: 0 0 24px 0;
|
|
1317
|
-
/* Increased from 16px bottom margin */
|
|
1318
|
-
padding: 0;
|
|
1319
|
-
line-height: 1.5;
|
|
1320
|
-
}
|
|
1321
|
-
|
|
1322
|
-
/* Increase description text size */
|
|
1323
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-description {
|
|
1324
|
-
font-size: 16px;
|
|
1325
|
-
/* Increased from default */
|
|
1326
|
-
line-height: 1.5;
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
|
-
/* Buttons in description */
|
|
1330
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-description .button-container .monaco-button {
|
|
1331
|
-
height: 36px;
|
|
1332
|
-
padding: 0 16px;
|
|
1333
|
-
font-size: 15px;
|
|
1334
|
-
}
|
|
1335
|
-
|
|
1336
|
-
/* Multi-step container buttons */
|
|
1337
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .multi-step-container .button-container .monaco-button {
|
|
1338
|
-
height: 36px;
|
|
1339
|
-
padding: 0 16px;
|
|
1340
|
-
font-size: 16px;
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
/* Responsive design - stack on smaller screens */
|
|
1344
|
-
@media (max-width: 600px) {
|
|
1345
|
-
|
|
1346
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-slide-content {
|
|
1347
|
-
grid-template-columns: 1fr;
|
|
1348
|
-
grid-template-areas:
|
|
1349
|
-
"text";
|
|
1350
|
-
gap: 24px;
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-text-content {
|
|
1354
|
-
padding-right: 2px;
|
|
1355
|
-
}
|
|
1356
|
-
|
|
1357
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-media-content {
|
|
1358
|
-
display: none;
|
|
1359
|
-
}
|
|
1360
|
-
|
|
1361
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-slide {
|
|
1362
|
-
padding: 0 16px;
|
|
1363
|
-
}
|
|
1364
|
-
|
|
1365
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-text-content,
|
|
1366
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-media-content {
|
|
1367
|
-
min-height: unset;
|
|
1368
|
-
height: auto;
|
|
1369
|
-
}
|
|
1370
|
-
}
|
|
1371
|
-
|
|
1372
|
-
/* Animation for slide transitions */
|
|
1373
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.animatable .step-slides-container {
|
|
1374
|
-
transition: transform 0.25s, opacity 0.25s;
|
|
1375
|
-
}
|
|
1376
|
-
|
|
1377
|
-
/* Low motion preference */
|
|
1378
|
-
.monaco-workbench.reduce-motion .part.editor > .content .gettingStartedContainer.newSlide .step-slides-container {
|
|
1379
|
-
transition: none;
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
/* Hide moreText and prev-button in newSlide scenarios */
|
|
1383
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .moreText,
|
|
1384
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .prev-button,
|
|
1385
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .prev-button.button-link,
|
|
1386
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .gettingStartedSlideDetails .prev-button {
|
|
1387
|
-
display: none;
|
|
1388
|
-
}
|
|
1389
|
-
|
|
1390
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-description .button-container {
|
|
1391
|
-
margin-top: 50px;
|
|
1392
|
-
}
|
|
1393
|
-
|
|
1394
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .step-description .button-container .monaco-button {
|
|
1395
|
-
height: 40px;
|
|
1396
|
-
width: fit-content;
|
|
1397
|
-
display: flex;
|
|
1398
|
-
padding: 0 10%;
|
|
1399
|
-
align-items: center;
|
|
1400
|
-
font-size: 16px;
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .multi-step-container {
|
|
1404
|
-
display: flex;
|
|
1405
|
-
flex-direction: column;
|
|
1406
|
-
}
|
|
1407
|
-
|
|
1408
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .sub-step {
|
|
1409
|
-
display: flex;
|
|
1410
|
-
flex-direction: column;
|
|
1411
|
-
cursor: pointer;
|
|
1412
|
-
box-sizing: border-box;
|
|
1413
|
-
border-left: 1px solid transparent;
|
|
1414
|
-
padding-left: 8px;
|
|
1415
|
-
padding-right: 8px;
|
|
1416
|
-
border-width: 1px;
|
|
1417
|
-
border-style: solid;
|
|
1418
|
-
border-color: transparent;
|
|
1419
|
-
}
|
|
1420
|
-
|
|
1421
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .sub-step-title {
|
|
1422
|
-
font-size: 20px;
|
|
1423
|
-
line-height: 24px;
|
|
1424
|
-
margin: 0;
|
|
1425
|
-
padding-top: 8px;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .sub-step.active {
|
|
1429
|
-
background: var(--vscode-welcomePage-tileHoverBackground);
|
|
1430
|
-
border-color: var(--vscode-welcomePage-tileBorder);
|
|
1431
|
-
border-radius: 6px;
|
|
1432
|
-
}
|
|
1433
|
-
|
|
1434
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .multi-step-container .button-container {
|
|
1435
|
-
margin-top: 2rem;
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.width-constrained .multi-step-container .button-container,
|
|
1439
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.width-semi-constrained .multi-step-container .button-container {
|
|
1440
|
-
margin-top: 1rem;
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .multi-step-container .action-message{
|
|
1444
|
-
display: flex;
|
|
1445
|
-
color: var(--vscode-descriptionForeground);
|
|
1446
|
-
font-size: 12px;
|
|
1447
|
-
margin-top: 12px;
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.width-constrained .sub-step-title {
|
|
1451
|
-
padding-top: 2px;
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained .step-slide-content,
|
|
1455
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.new-layout-width-constrained .step-slide-content {
|
|
1456
|
-
grid-template-columns: 1fr;
|
|
1457
|
-
grid-template-areas: "text";
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained .step-text-content,
|
|
1461
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.new-layout-width-constrained .step-text-content {
|
|
1462
|
-
width: 100%;
|
|
1463
|
-
padding-right: 0;
|
|
1464
|
-
}
|
|
1465
|
-
|
|
1466
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained .getting-started-media,
|
|
1467
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.new-layout-width-constrained .getting-started-media {
|
|
1468
|
-
display: none;
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.width-constrained .step-dots-container .dots-centered,
|
|
1472
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.new-layout-width-constrained .step-dots-container .dots-centered {
|
|
1473
|
-
display: none;
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained .step-media-content,
|
|
1477
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.new-layout-width-constrained .step-media-content {
|
|
1478
|
-
display: none;
|
|
1479
|
-
}
|
|
1480
|
-
|
|
1481
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained .getting-started-steps-container,
|
|
1482
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.new-layout-width-constrained .getting-started-steps-container {
|
|
1483
|
-
width: 90%;
|
|
1484
|
-
}
|
|
1485
|
-
|
|
1486
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained .category-header {
|
|
1487
|
-
display: none;
|
|
1488
|
-
}
|
|
1489
|
-
|
|
1490
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained .getting-started-steps-container {
|
|
1491
|
-
grid-template-rows: 5% 70% 5% auto;
|
|
1492
|
-
grid-template-areas:
|
|
1493
|
-
"."
|
|
1494
|
-
"slides"
|
|
1495
|
-
"dots"
|
|
1496
|
-
"footer";
|
|
1497
|
-
padding-top: 0;
|
|
1498
|
-
}
|
|
1499
|
-
|
|
1500
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained .step-slides-container {
|
|
1501
|
-
padding-top: 0;
|
|
1502
|
-
}
|
|
1503
|
-
|
|
1504
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained h3.step-title {
|
|
1505
|
-
margin-bottom: 12px;
|
|
1506
|
-
font-size: 1.8em;
|
|
1507
|
-
}
|
|
1508
|
-
|
|
1509
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide.height-constrained .gettingStartedSlideDetails .gettingStartedDetailsContent > .steps-container {
|
|
1510
|
-
padding-top: 0;
|
|
1511
|
-
margin-top: 0;
|
|
1512
|
-
}
|
|
1513
|
-
|
|
1514
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .multi-step-container .button-container .monaco-button {
|
|
1515
|
-
height: 40px;
|
|
1516
|
-
width: fit-content;
|
|
1517
|
-
display: flex;
|
|
1518
|
-
padding: 0 10%;
|
|
1519
|
-
align-items: center;
|
|
1520
|
-
min-width: max-content;
|
|
1521
|
-
font-size: 16px;
|
|
1522
|
-
}
|
|
1523
|
-
|
|
1524
|
-
.monaco-workbench .part.editor > .content .gettingStartedContainer.newSlide .gettingStarted.showDetails .gettingStartedSlideCategories {
|
|
1525
|
-
left: 100%;
|
|
1526
|
-
opacity: 0;
|
|
1527
|
-
}
|
|
@@ -25,10 +25,9 @@ import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/pla
|
|
|
25
25
|
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
26
26
|
import { RegisteredEditorPriority } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorResolverService';
|
|
27
27
|
import { IEditorResolverService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorResolverService.service';
|
|
28
|
-
import { TerminalCommandId } from '@codingame/monaco-vscode-
|
|
28
|
+
import { TerminalCommandId } from '@codingame/monaco-vscode-b6d52a6d-8c8e-51f5-bcd2-1722295e31d9-common/vscode/vs/workbench/contrib/terminal/common/terminal';
|
|
29
29
|
import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
|
|
30
30
|
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
31
|
-
import { startupExpContext, StartupExperimentGroup } from '@codingame/monaco-vscode-f6f55824-df83-5ffc-ac26-50fd4df4fe0e-common/vscode/vs/workbench/services/coreExperimentation/common/coreExperimentationService';
|
|
32
31
|
import { AuxiliaryBarMaximizedContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
|
|
33
32
|
|
|
34
33
|
const restoreWalkthroughsConfigurationKey = 'workbench.welcomePage.restorableWalkthroughs';
|
|
@@ -44,7 +43,7 @@ let StartupPageEditorResolverContribution = class StartupPageEditorResolverContr
|
|
|
44
43
|
this._register(disposables);
|
|
45
44
|
editorResolverService.registerEditor(`${GettingStartedInput.RESOURCE.scheme}:/**`, {
|
|
46
45
|
id: GettingStartedInput.ID,
|
|
47
|
-
label: ( localize(
|
|
46
|
+
label: ( localize(12616, "Welcome Page")),
|
|
48
47
|
priority: RegisteredEditorPriority.builtin,
|
|
49
48
|
}, {
|
|
50
49
|
singlePerResource: false,
|
|
@@ -114,12 +113,6 @@ let StartupPageRunnerContribution = class StartupPageRunnerContribution extends
|
|
|
114
113
|
await this.openReadme();
|
|
115
114
|
}
|
|
116
115
|
else if (startupEditorSetting.value === 'welcomePage' || startupEditorSetting.value === 'welcomePageInEmptyWorkbench') {
|
|
117
|
-
if (this.storageService.isNew(StorageScope.APPLICATION)) {
|
|
118
|
-
const startupExpValue = startupExpContext.getValue(this.contextKeyService);
|
|
119
|
-
if (startupExpValue === StartupExperimentGroup.MaximizedChat || startupExpValue === StartupExperimentGroup.SplitEmptyEditorChat) {
|
|
120
|
-
return;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
116
|
await this.openGettingStarted(true);
|
|
124
117
|
}
|
|
125
118
|
else if (startupEditorSetting.value === 'terminal') {
|
|
@@ -167,7 +160,7 @@ let StartupPageRunnerContribution = class StartupPageRunnerContribution extends
|
|
|
167
160
|
await Promise.all([
|
|
168
161
|
this.commandService.executeCommand('markdown.showPreview', null, readmes.filter(isMarkDown), { locked: true }).catch(error => {
|
|
169
162
|
this.notificationService.error(( localize(
|
|
170
|
-
|
|
163
|
+
12617,
|
|
171
164
|
'Could not open markdown preview: {0}.\n\nPlease make sure the markdown extension is enabled.',
|
|
172
165
|
error.message
|
|
173
166
|
)));
|
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ declare class GettingStartedContentProviderRegistry {
|
|
|
11
11
|
}
|
|
12
12
|
export declare const gettingStartedContentRegistry: GettingStartedContentProviderRegistry;
|
|
13
13
|
export declare function moduleToContent(resource: URI): Promise<string>;
|
|
14
|
-
export declare const NEW_WELCOME_EXPERIENCE = "NewWelcomeExperience";
|
|
15
14
|
export type BuiltinGettingStartedStep = {
|
|
16
15
|
id: string;
|
|
17
16
|
title: string;
|