pxt-core 12.3.22 → 12.3.23

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxt-core",
3
- "version": "12.3.22",
3
+ "version": "12.3.23",
4
4
  "description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
5
5
  "keywords": [
6
6
  "TypeScript",
package/theme/common.less CHANGED
@@ -299,6 +299,40 @@ pre {
299
299
  color: var(--pxt-primary-foreground-hover) !important;
300
300
  }
301
301
  }
302
+
303
+ .file-list-item {
304
+ display: flex;
305
+ flex-direction: row;
306
+ align-items: center;
307
+
308
+ .file-list-item-contents {
309
+ flex-grow: 1;
310
+ }
311
+
312
+ .button:focus-visible {
313
+ outline: @editorFocusBorderSize solid var(--pxt-focus-border);
314
+ outline-offset: 2px;
315
+ }
316
+
317
+ &.nested {
318
+ font-size: 0.9rem;
319
+ padding-left: 2rem;
320
+ }
321
+
322
+ & > i.icon.chevron {
323
+ margin-right: 0;
324
+ margin-left: 0.5rem;
325
+ }
326
+
327
+ & > i.icon.folder {
328
+ margin-right: 0.3rem;
329
+ }
330
+
331
+ &:focus-visible {
332
+ outline-offset: -3px;
333
+ outline: @editorFocusBorderSize solid var(--pxt-focus-border);
334
+ }
335
+ }
302
336
  }
303
337
 
304
338
  .filemenu .nested.item {