Add console icon and set color. Fixes #152

This commit is contained in:
Sam El-Husseini
2018-01-05 10:38:26 -08:00
parent 886464b470
commit e938f354fd
11 changed files with 94 additions and 30 deletions

View File

@ -53,7 +53,6 @@ div.blocklyTreeSeparator {
/* Blockly Text */
span.blocklyTreeLabel {
font-family: @pageFont !important;
text-transform: uppercase !important;
font-size:1rem !important;
font-weight: bold;
}
@ -118,34 +117,34 @@ span.blocklyTreeIcon.blocklyTreeIconaddpackage::before {
}
span.blocklyTreeIcon.blocklyTreeIconadvancedcollapsed::before {
content: "\f112";
content: "\f113";
}
span.blocklyTreeIcon.blocklyTreeIconadvancedexpanded::before {
content: "\f113";
content: "\f114";
}
.save-editortools-btn .icon.save:before {
font-family: 'legoIcons';
content: "\f117";
content: "\f118";
}
.download-button .icon.download.icon-and-text:before {
font-family: 'legoIcons';
content: "\f116";
content: "\f117";
}
.button.approve.positive i.icon.checkmark:before {
font-family: 'legoIcons';
content: "\f115";
content: "\f116";
}
.button.approve.cancel i.icon.cancel:before {
font-family: 'legoIcons';
content: "\f114";
content: "\f115";
}
.blocks-menuitem i.icon.blocks:before {
font-family: 'legoIcons' !important;
content: "\f118" !important;
content: "\f119" !important;
}

View File

@ -132,7 +132,7 @@
Full screen
--------------------*/
@fullscreenBackgroundGradientStart: @blue;
@fullscreenBackgroundGradientStart: #fff;
@fullscreenBackgroundGradientEnd: #fff;
/*-------------------
@ -170,6 +170,6 @@
--------------------*/
@flyoutLabelColor: white;
@blocklyFlyoutColor: #282828;
@blocklyFlyoutColorOpacity: 0.9;
@monacoFlyoutColor: rgba(40, 40, 40,0.9);
@blocklyFlyoutColor: #3B3C3D;
@blocklyFlyoutColorOpacity: 1.0;
@monacoFlyoutColor: rgba(59, 60, 61, 1.0);