Lines Matching refs:style

1367 	    return node.style[name];
1384 node.style[hyphenated] = value;
2794 this.CONNECTION_STYLE = styles.style([ 'no-fill' ], { strokeWidth: 5, stroke: 'fuchsia' });
2795 this.SHAPE_STYLE = styles.style({ fill: 'white', stroke: 'fuchsia', strokeWidth: 2 });
2796 …this.FRAME_STYLE = styles.style([ 'no-fill' ], { stroke: 'fuchsia', strokeDasharray: 4, strokeWidt…
2903 var attrs = this.style(traits, additionalAttrs);
2916 this.style = function(traits, additionalAttrs) { method in Styles
2936 return self.style(traits || [], assign({}, defaultStyles, custom || {}));
4340 assign(parent.style, {
16255 assign(container.style, {
17134 style: {
17152 style: assign(
17169 style: {
17785 var innerAttrs = styles.style([ 'no-fill', 'no-events' ], {
17825 style: {
18144 style: {
18283 var style = { class in BpmnRenderer
18288 var textElement = drawRect(parentGfx, element.width, element.height, 0, 0, style);
18310 style: {
18770 style: 'visibility: hidden; position: fixed'
18794 style: {},
18841 style = assign({}, this._config.style, options.style),
18846 var lineHeight = getLineHeight(style);
18858 attr(helperText, style);
18893 attr(textElement, style);
18942 function getLineHeight(style) { argument
18943 if ('fontSize' in style && 'lineHeight' in style) {
18944 return style.lineHeight * parseInt(style.fontSize, 10);
18970 style: defaultStyle
18991 style: externalStyle
19016 style: defaultStyle,
21659 assign(el.style, { left: x + 'px', top: y + 'px' });
21663 el.style.display = visible === false ? 'none' : '';
21668 el.style['transform-origin'] = 'top left';
21671 el.style[prefix + 'transform'] = transform;
23915 var PREFIXED_TOUCH_ACTION = prefixed(TEST_ELEMENT.style, 'touchAction');
23950 if (NATIVE_TOUCH_ACTION && this.manager.element.style && TOUCH_ACTION_MAP[value]) {
23951 this.manager.element.style[PREFIXED_TOUCH_ACTION] = value;
25273 if (!element.style) {
25278 prop = prefixed(element.style, name);
25280 manager.oldCssProps[prop] = element.style[prop];
25281 element.style[prop] = value;
25283 element.style[prop] = manager.oldCssProps[prop] || '';
30536 TextBox.prototype.create = function(bounds, style, value, options) { argument
30545 style = this.style = style || {};
30547 var parentStyle = pick(style, [
30566 assign(parent.style, {
30585 var contentStyle = pick(style, [
30597 assign(content.style, {
30605 assign(content.style, {
30623 this.resizable(style);
30639 style = this.style;
30658 var hasResized = this.autoResize(style);
30748 var fontSize = parseInt(this.style.fontSize) || 12;
30755 parent.style.height = height + 'px';
30775 var minWidth = parseInt(this.style.minWidth) || 0,
30776 minHeight = parseInt(this.style.minHeight) || 0,
30777 maxWidth = parseInt(this.style.maxWidth) || Infinity,
30778 maxHeight = parseInt(this.style.maxHeight) || Infinity;
30810 parent.style.width = newWidth + 'px';
30811 parent.style.height = newHeight + 'px';
30832 assign(resizeHandle.style, {
30839 borderTop: (parseInt(this.style.fontSize) / 4 || 3) + 'px solid transparent',
30840 borderRight: (parseInt(this.style.fontSize) / 4 || 3) + 'px solid #ccc',
30841 borderBottom: (parseInt(this.style.fontSize) / 4 || 3) + 'px solid #ccc',
30842 borderLeft: (parseInt(this.style.fontSize) / 4 || 3) + 'px solid transparent'
31076 context.style,
32495 assign(container.style, {
32618 assign(container.style, { left: left, top: top }, { visibility: 'visible', 'z-index': 1000 });
32714 element.style['transform-origin'] = 'top left';
32717 element.style[prefix + 'transform'] = transform;
39308 var style = { class in AnonymousFunctionf8d14cd140200
39323 assign(style, {
39346 assign(style, {
39364 assign(style, {
39387 assign(style, {
39418 assign(style, {
39435 assign(style, {
39446 return { bounds: bounds, style: style };
46119 assign(el.style, { left: x + 'px', top: y + 'px' });
46123 el.style.display = visible === false ? 'none' : '';
46360 this._tooltipRoot.style.transform = matrix;
46361 this._tooltipRoot.style['-ms-transform'] = matrix;