mirror of
https://github.com/google/blockly.git
synced 2026-01-09 18:10:08 +01:00
Fix warning text color. Make it black. (#3730)
This commit is contained in:
@@ -320,10 +320,6 @@ Blockly.Css.CONTENT = [
|
||||
'pointer-events: none;',
|
||||
'}',
|
||||
|
||||
'.blocklyBubbleText {',
|
||||
'fill: #000;',
|
||||
'}',
|
||||
|
||||
'.blocklyFlyout {',
|
||||
'position: absolute;',
|
||||
'z-index: 20;',
|
||||
|
||||
@@ -1184,6 +1184,11 @@ Blockly.blockRendering.ConstantProvider.prototype.getCSS_ = function(name) {
|
||||
'fill: #000;',
|
||||
'}',
|
||||
|
||||
// Bubbles.
|
||||
selector + ' .blocklyText.blocklyBubbleText {',
|
||||
'fill: #000;',
|
||||
'}',
|
||||
|
||||
// Editable field hover.
|
||||
selector + ' .blocklyEditableText:not(.editing):hover>rect {',
|
||||
'stroke: #fff;',
|
||||
|
||||
@@ -919,6 +919,11 @@ Blockly.zelos.ConstantProvider.prototype.getCSS_ = function(name) {
|
||||
'fill: #575E75;',
|
||||
'}',
|
||||
|
||||
// Bubbles.
|
||||
selector + ' .blocklyText.blocklyBubbleText {',
|
||||
'fill: #575E75;',
|
||||
'}',
|
||||
|
||||
// Editable field hover.
|
||||
selector + ' .blocklyDraggable:not(.blocklyDisabled)',
|
||||
' .blocklyEditableText:not(.editing):hover>rect ,',
|
||||
|
||||
Reference in New Issue
Block a user