Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
800682e8cc | |||
291ea7169f | |||
ef6c3a6617 | |||
734e81f4be | |||
8e1acfc7df | |||
01c56e1111 | |||
dfbf06fc0e | |||
d1902a83ca | |||
aeff3d9f45 | |||
6530bc26ae | |||
8ea9f1fb26 | |||
1e94e04104 |
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"appref": "v0.7.3"
|
"appref": "v0.7.7"
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pxt-calliope",
|
"name": "pxt-calliope",
|
||||||
"version": "0.7.5",
|
"version": "0.7.10",
|
||||||
"description": "calliope target for PXT",
|
"description": "calliope target for PXT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"JavaScript",
|
"JavaScript",
|
||||||
@ -34,6 +34,6 @@
|
|||||||
"semantic-ui-less": "^2.2.4"
|
"semantic-ui-less": "^2.2.4"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pxt-core": "0.7.9"
|
"pxt-core": "0.7.13"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,9 @@
|
|||||||
"mathBlocks": true,
|
"mathBlocks": true,
|
||||||
"loopsBlocks": true,
|
"loopsBlocks": true,
|
||||||
"logicBlocks": true,
|
"logicBlocks": true,
|
||||||
"variablesBlocks": true
|
"variablesBlocks": true,
|
||||||
|
"onStartColor": "#54C9C9",
|
||||||
|
"onStartNamespace": "basic"
|
||||||
},
|
},
|
||||||
"simulator": {
|
"simulator": {
|
||||||
"autoRun": true,
|
"autoRun": true,
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
background: #4ECC60 !important;
|
background: #4ECC60 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blocks-menuitem, .javascript-menuitem {
|
.blocks-menuitem.active, .javascript-menuitem.active {
|
||||||
background: #738791 !important;
|
background: #738791 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -88,12 +88,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Blockly Toolbox Buttons */
|
/* Blockly Toolbox Buttons */
|
||||||
#blocklyToolboxButtons .blocklyAddPackageButton {
|
.blocklyToolboxButtons .blocklyAddPackageButton {
|
||||||
|
&:extend(.ui.button all);
|
||||||
|
&:extend(.circular all);
|
||||||
background-color: rgba(0, 0, 0, 0.3);
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
#blocklyToolboxButtons .blocklyUndoButton {
|
.blocklyToolboxButtons .blocklyUndoButton {
|
||||||
|
&:extend(.ui.button all);
|
||||||
|
&:extend(.circular all);
|
||||||
background-color: rgba(0, 0, 0, 0.3);
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
@ -103,52 +107,22 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Mobile */
|
/* Mobile */
|
||||||
@media only screen and (max-width: @largestMobileEditorBreakpoint) {
|
@media only screen and (max-width: @largestMobileScreen) {
|
||||||
.blocklyTreeLabel {
|
.blocklyTreeLabel {
|
||||||
font-size: 0.5rem !important;
|
font-size: 0.5rem !important;
|
||||||
}
|
}
|
||||||
.organization {
|
|
||||||
top: auto;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tablet */
|
/* Tablet */
|
||||||
@media only screen and (min-width: @tabletEditorBreakpoint) and (max-width: @largestTabletEditorBreakpoint) {
|
@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
|
||||||
.organization {
|
|
||||||
top: auto;
|
|
||||||
}
|
|
||||||
/* Blockly Toolbox buttons */
|
|
||||||
#blocklyToolboxButtons {
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
margin-left: 0.5rem;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Small Monitor */
|
/* Small Monitor */
|
||||||
@media only screen and (min-width: @computerEditorBreakpoint) and (max-width: @largestSmallMonitorEditorBreakpoint) {
|
@media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) {
|
||||||
.organization {
|
|
||||||
top: auto;
|
|
||||||
}
|
|
||||||
.blocklyTreeRow {
|
|
||||||
width: 230px;
|
|
||||||
}
|
|
||||||
/* Blockly Toolbox buttons */
|
|
||||||
#blocklyToolboxButtons {
|
|
||||||
margin-right: 1rem;
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Large Monitor */
|
/* Large Monitor */
|
||||||
@media only screen and (min-width: @largeMonitorEditorBreakpoint) {
|
@media only screen and (min-width: @largeMonitorBreakpoint) {
|
||||||
.blocklyTreeRow {
|
|
||||||
width: 230px;
|
|
||||||
}
|
|
||||||
/* Blockly Toolbox buttons */
|
|
||||||
#blocklyToolboxButtons {
|
|
||||||
margin-right: 2rem;
|
|
||||||
margin-left: 2rem;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*******************************
|
/*******************************
|
||||||
|
Reference in New Issue
Block a user