pxt-core 8.3.6 → 8.3.8

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": "8.3.6",
3
+ "version": "8.3.8",
4
4
  "description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
5
5
  "keywords": [
6
6
  "TypeScript",
@@ -874,6 +874,12 @@
874
874
  }
875
875
  }
876
876
 
877
+ &.tabTutorial details {
878
+ background-color: @HCbackground !important;
879
+ border: 2px solid @HCtextColor !important;
880
+ color: @HCtextColor !important;
881
+ }
882
+
877
883
  .ui.label {
878
884
  background-color: @HCbackground !important;
879
885
  border: 2px solid @HCtextColor !important;
@@ -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,13 +525,15 @@
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: #028b9b;
530
- background-color: #b1e3da;
531
+ color: @tutorialHintForegroundColor;
532
+ background-color: @tutorialHintBackgroundColor;
531
533
  border-radius: .5rem;
534
+ summary {
535
+ cursor: pointer;
536
+ }
532
537
  }
533
538
 
534
539
 
@@ -405,8 +405,8 @@ code.lang-filterblocks {
405
405
  transform: rotateZ(-135deg);
406
406
  }
407
407
 
408
- .tutorialhint > div,
409
- .tutorial-callout > div {
408
+ .tutorialhint > .hint-content,
409
+ .tutorial-callout > .hint-content {
410
410
  max-height: 60vh;
411
411
  overflow: auto;
412
412
  padding-right: 2rem;