We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86d8e6d commit d533ca8Copy full SHA for d533ca8
2 files changed
gulpfile.js
@@ -544,7 +544,7 @@ const buildSVGIcons = () => {
544
}
545
546
const copyBlocklyMedia = () =>
547
- gulp.src("node_modules/blockly/media/*")
+ gulp.src("node_modules/blockly/media/*", { encoding: false })
548
.pipe(gulp.dest("webapp/public/blockly/media"))
549
550
theme/fieldeditors.less
@@ -11,6 +11,10 @@
11
@blocklyDarkTextColor: #575E75;
12
@fieldNoteSelectedColor: yellowgreen;
13
14
+.blocklyDropDownContent {
15
+ overflow-y: auto;
16
+}
17
+
18
////// Note Editor Field ////////
19
.blocklyDropDownContent {
20
.blocklyPianoDiv {
0 commit comments