diff --git a/_server/editor_blockly.js b/_server/editor_blockly.js index e352376b..6548af93 100644 --- a/_server/editor_blockly.js +++ b/_server/editor_blockly.js @@ -147,7 +147,7 @@ editor_blockly = function () { editor_blockly.highlightParse = function (shouldHighLight) { if (shouldNotifyParse == shouldHighLight) return; shouldNotifyParse = shouldHighLight; - blocklyParseBtn.style.background = shouldNotifyParse ? '#fff4bb' : 'unset'; + blocklyParseBtn.style.background = shouldNotifyParse ? '#ffd700' : 'unset'; } editor_blockly.cancel = function () { diff --git a/_server/editor_mappanel.js b/_server/editor_mappanel.js index 3be66b64..62274615 100644 --- a/_server/editor_mappanel.js +++ b/_server/editor_mappanel.js @@ -816,7 +816,7 @@ editor_mappanel_wrapper = function (editor) { editor.uifunctions.highlightSaveFloorButton=function(){ var saveFloor = document.getElementById('saveFloor'); - saveFloor.style.background='#fff4bb'; + saveFloor.style.background='#ffd700'; } editor.uifunctions.unhighlightSaveFloorButton=function(){