pxt-core 8.3.6 → 8.3.7
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
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
|
|
12
12
|
@tutorialLinkColor: #0064BF;
|
|
13
13
|
@tutorialLinkHoverColor: #003C94;
|
|
14
|
+
@tutorialHintForegroundColor: #1A6771;
|
|
15
|
+
@tutorialHintBackgroundColor: #CEFFF5;
|
|
14
16
|
|
|
15
17
|
@tutorialTabletButtonColor: #f3f3f3;
|
|
16
18
|
@tutorialTabletSimulatorButtonColor: rgba(0, 0, 0, 0.05);
|
|
@@ -278,6 +280,7 @@
|
|
|
278
280
|
bottom: 5rem;
|
|
279
281
|
left: 3rem;
|
|
280
282
|
max-width: 50%;
|
|
283
|
+
border-color: @tutorialHintBackgroundColor;
|
|
281
284
|
}
|
|
282
285
|
|
|
283
286
|
.tutorial-callout:before {
|
|
@@ -522,12 +525,11 @@
|
|
|
522
525
|
/*********************************
|
|
523
526
|
Accordion Hints (details)
|
|
524
527
|
*********************************/
|
|
525
|
-
|
|
526
528
|
.tabTutorial details {
|
|
527
529
|
padding: .5rem;
|
|
528
530
|
margin-bottom: 1rem;
|
|
529
|
-
color:
|
|
530
|
-
background-color:
|
|
531
|
+
color: @tutorialHintForegroundColor;
|
|
532
|
+
background-color: @tutorialHintBackgroundColor;
|
|
531
533
|
border-radius: .5rem;
|
|
532
534
|
}
|
|
533
535
|
|
package/theme/tutorial.less
CHANGED
|
@@ -405,8 +405,8 @@ code.lang-filterblocks {
|
|
|
405
405
|
transform: rotateZ(-135deg);
|
|
406
406
|
}
|
|
407
407
|
|
|
408
|
-
.tutorialhint >
|
|
409
|
-
.tutorial-callout >
|
|
408
|
+
.tutorialhint > .hint-content,
|
|
409
|
+
.tutorial-callout > .hint-content {
|
|
410
410
|
max-height: 60vh;
|
|
411
411
|
overflow: auto;
|
|
412
412
|
padding-right: 2rem;
|