pxt-core 12.2.1 → 12.2.2
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/built/pxt.js +11 -0
- package/built/pxtlib.d.ts +1 -0
- package/built/pxtlib.js +11 -0
- package/built/target.js +1 -1
- package/built/targetlight.js +1 -1
- package/built/tests/blocksrunner.js +17 -2
- package/built/tests/blockssetup.js +17 -2
- package/built/web/main.js +1 -1
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtasseteditor.js +1 -1
- package/built/web/pxtembed.js +1 -1
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/built/web/rtlsemantic.css +1 -1
- package/built/web/runnerembed.js +1 -1
- package/built/web/semantic.css +1 -1
- package/package.json +1 -1
- package/theme/home.less +8 -6
package/package.json
CHANGED
package/theme/home.less
CHANGED
|
@@ -372,11 +372,8 @@
|
|
|
372
372
|
.button.approve {
|
|
373
373
|
width: 100%;
|
|
374
374
|
color: var(--pxt-neutral-foreground3);
|
|
375
|
-
background-color: @orange;
|
|
376
|
-
transition-duration: 0s;
|
|
377
|
-
}
|
|
378
|
-
&:first-child .button.approve {
|
|
379
375
|
background-color: var(--pxt-primary-background);
|
|
376
|
+
transition-duration: 0s;
|
|
380
377
|
}
|
|
381
378
|
}
|
|
382
379
|
.card-action-title {
|
|
@@ -418,9 +415,14 @@
|
|
|
418
415
|
background-size: 70%;
|
|
419
416
|
background-blend-mode: color-burn;
|
|
420
417
|
font-size: 6.5rem!important;
|
|
418
|
+
|
|
419
|
+
&.py {
|
|
420
|
+
background-image: @pyIcon;
|
|
421
|
+
}
|
|
422
|
+
&.js {
|
|
423
|
+
background-image: @jsIcon;
|
|
424
|
+
}
|
|
421
425
|
}
|
|
422
|
-
.card-action .xicon.py { background-image: @pyIcon; }
|
|
423
|
-
.card-action .xicon.js { background-image: @jsIcon; }
|
|
424
426
|
|
|
425
427
|
/* unset semantic properties */
|
|
426
428
|
.card-action > a:first-child {
|