Lines Matching refs:color

331 Format.prototype.isSpecialColor = function(color)  argument
335 'indicated'], color) >= 0;
452 div.style.color = 'rgb(112, 112, 112)';
1171 var apply = function(color, disableUpdate, forceUpdate) argument
1178 color = (/(^#?[a-zA-Z0-9]*$)/.test(color)) ? color : defaultValue;
1179 var tempColor = (color != null && color != mxConstants.NONE) ? color : defaultValue;
1191 if (color != null && color != mxConstants.NONE && color.length > 1 && typeof color === 'string')
1193 var clr = (color.charAt(0) == '#') ? color.substring(1).toUpperCase() : color;
1198 if (color != null && color != mxConstants.NONE)
1215 callbackFn(color == 'null' ? null : color);
1220 value = color;
1243 var color = value;
1245 if (color == 'default')
1247 color = defaultColorValue;
1252 clrInput.value = color;
1262 this.editorUi.pickColor(color, function(newColor)
1339 }, function(color, realValue) argument
1345 graph.setCellStyles(colorKey, color, cells);
1349 setStyleFn(color);
1353 'values', [color], 'cells', cells));
3094 cssMenu.style.color = 'rgb(112, 112, 112)';
3117 fontMenu.style.color = 'rgb(112, 112, 112)';
3583 }, function(color) argument
3585 document.execCommand('backcolor', false, (color != mxConstants.NONE) ? color : 'transparent');
3588 'values', [color], 'cells', ss.cells));
3594 mxConstants.STYLE_LABEL_BACKGROUNDCOLOR, 'default', null, function(color) argument
3612 }, function(color) argument
3627 color: tmp[i].getAttribute('color')
3631 document.execCommand('forecolor', false, (color != mxConstants.NONE) ?
3632 color : 'transparent');
3635 'values', [color], 'cells', ss.cells));
3644 newFonts[i].getAttribute('color') != oldFonts[i].color))
3673 document.execCommand('forecolor', false, (color != mxConstants.NONE) ?
3674 color : 'transparent');
3677 'values', [color], 'cells', ss.cells));
3684 mxConstants.STYLE_FONTCOLOR, 'default', function(color) argument
3686 if (color == mxConstants.NONE)
3696 }, function(color) argument
3698 if (color == mxConstants.NONE)
3707 graph.setCellStyles(mxConstants.STYLE_FONTCOLOR, color, ss.cells);
3712 elt.style.color = null;
4016 var color = currentTable.style.borderColor.replace(
4021 this.editorUi.pickColor(color, function(newColor)
4051 var color = currentTable.style.backgroundColor.replace(
4056 this.editorUi.pickColor(color, function(newColor)
4459 var color = css.color.replace(
4481 if (color.charAt(0) == '#')
4483 currentFontColor = color;
4690 }, mxUtils.bind(this, function(color) argument
4692 rules[ruleIndex].style[key] = color;
4817 ….STYLE_GRADIENTCOLOR] != null) ? defs[mxConstants.STYLE_GRADIENTCOLOR] : '#ffffff', function(color) argument
4819 if (color == null || color == mxConstants.NONE)
4827 }, function(color) argument
4829 graph.updateCellStyles(mxConstants.STYLE_GRADIENTCOLOR, color, graph.getSelectionCells());
4835 …el = this.createCellColorOption(label, fillKey, 'default', null, mxUtils.bind(this, function(color) argument
4837 graph.setCellStyles(fillKey, color, ss.cells);
5035 … = this.createCellColorOption(label, strokeKey, 'default', null, mxUtils.bind(this, function(color) argument
5037 graph.setCellStyles(strokeKey, color, ss.cells);
5447 var color = mxUtils.getValue(ss.style, strokeKey, null);
5590 markerDiv.style.color = this.defaultStrokeColor;
6634 }, function(color) argument
6636 var change = new ChangePageSetup(ui, color);
6844 var color = graph.view.gridColor;
6846 return (graph.isGridEnabled()) ? color : null;
6847 }, function(color) argument
6851 if (color == mxConstants.NONE)
6858 ui.setGridColor(color);