Add workspace colour from spec

This commit is contained in:
Tim Mickel 2016-03-01 15:01:45 -05:00
parent ddeea237da
commit a5d563e03e

View file

@ -26,6 +26,8 @@
goog.provide('Blockly.Css');
goog.require('Blockly.Colours');
/**
* List of cursors.
@ -132,7 +134,7 @@ Blockly.Css.setCursor = function(cursor) {
*/
Blockly.Css.CONTENT = [
'.blocklySvg {',
'background-color: #fff;',
'background-color: ' + Blockly.Colours.workspace + ';',
'outline: none;',
'overflow: hidden;', /* IE overflows by default. */
'}',