Add styled monitor checkboxes

This commit is contained in:
Paul Kaplan 2017-04-19 15:05:51 -04:00
parent fb51d1a078
commit b3d698c71d
2 changed files with 38 additions and 10 deletions
core

View file

@ -1036,11 +1036,20 @@ Blockly.Css.CONTENT = [
'}',
'.blocklyFlyoutCheckbox {',
'fill: red;',
'fill: white;',
'stroke: #c8c8c8;',
'}',
'.blocklyFlyoutCheckbox.checked {',
'fill: blue;',
'fill: ' + Blockly.Colours.motion.primary + ';',
'stroke: ' + Blockly.Colours.motion.tertiary + ';',
'}',
'.blocklyFlyoutCheckboxPath {',
'stroke: white;',
'stroke-width: 3;',
'stroke-linecap: round;',
'stroke-linejoin: round;',
'}',
'.scratchCategoryMenu {',