Lines Matching refs:elt

56 Format.processMenuIcon = function(elt, transform)  argument
58 var imgs = elt.getElementsByTagName('img');
77 return elt;
482 var addClickHandler = mxUtils.bind(this, function(elt, panel, index, lastEntry) argument
486 if (currentLabel != elt)
507 currentLabel = elt;
524 mxEvent.addListener(elt, 'click', clickHandler);
527 mxEvent.addListener(elt, (mxClient.IS_POINTER) ? 'pointerdown' : 'mousedown',
768 graph.updateLabelElements(cells, function(elt) argument
770 elt.style.fontSize = value + 'px';
771 elt.removeAttribute('size');
1386 BaseFormatPanel.prototype.addArrow = function(elt, height) argument
1425 var symbol = elt.getElementsByTagName('div')[0];
1436 mxUtils.setOpacity(elt, 100);
1437 elt.style.border = '1px solid #a0a0a0';
1438 elt.style.backgroundColor = this.buttonBackgroundColor;
1439 elt.style.backgroundImage = 'none';
1440 elt.style.width = 'auto';
1441 elt.className += ' geColorBtn';
1442 mxUtils.setPrefixedStyle(elt.style, 'borderRadius', '3px');
1444 elt.appendChild(arrow);
3440 function updateSize(elt, ignoreContains) argument
3442 if (graph.cellEditor.textarea != null && elt != graph.cellEditor.textarea &&
3443 graph.cellEditor.textarea.contains(elt) &&
3444 (ignoreContains || selection.containsNode(elt, true)))
3446 if (elt.nodeName == 'FONT')
3448 elt.removeAttribute('size');
3449 elt.style.fontSize = fontSize + 'px';
3453 var css = mxUtils.getCurrentStyle(elt);
3457 if (mxUtils.getCurrentStyle(elt.parentNode).fontSize != fontSize + 'px')
3459 elt.style.fontSize = fontSize + 'px';
3463 elt.style.fontSize = '';
3596 graph.updateLabelElements(ss.cells, function(elt) argument
3598 elt.style.backgroundColor = null;
3709 graph.updateLabelElements(ss.cells, function(elt) argument
3711 elt.removeAttribute('color');
3712 elt.style.color = null;
4025 graph.processElements(targetElt, function(elt)
4027 elt.style.border = null;
4060 graph.processElements(targetElt, function(elt)
4062 elt.style.backgroundColor = null;
4131 function setSelected(elt, selected) argument
4133 elt.style.backgroundImage = (selected) ? (Editor.isDarkMode() ?
4284 function getRelativeLineHeight(fontSize, css, elt) argument
4286 if (elt.style != null && css != null)
4290 …if (elt.style.lineHeight != null && elt.style.lineHeight.substring(elt.style.lineHeight.length - 1…
4292 return parseInt(elt.style.lineHeight) / 100;
5310 var elt = this.addArrow(edgeShape, 8);
5311 elt.nextSibling.style.position = 'relative';
5312 elt.nextSibling.style.top = '-2px';
5313 elt = this.addArrow(edgeStyle, 10);
5314 elt.nextSibling.style.position = 'relative';
5315 elt.nextSibling.style.top = '-3px';
5572 function updateArrow(marker, fill, elt, prefix) argument
5574 var markerDiv = elt.getElementsByTagName('div')[0];
6453 (mxUtils.bind(this, function(index, elt) argument
6509 function addHoverState(elt) argument
6511 mxEvent.addListener(elt, 'mouseenter', function()
6513 elt.style.opacity = '1';
6515 mxEvent.addListener(elt, 'mouseleave', function()
6517 elt.style.opacity = '0.5';