Lines Matching refs:style

61   return $(element).style.opacity || '';
99 Builder.node('span',{style: tagifyStyle},
436 this.originalStyle[k] = this.element.style[k];
585 top: element.style.top,
586 left: element.style.left,
587 width: element.style.width,
588 height: element.style.height
776 top: element.style.top,
777 left: element.style.left,
778 height: element.style.height,
779 width: element.style.width,
850 top: element.style.top,
851 left: element.style.left,
852 height: element.style.height,
853 width: element.style.width,
911 top: element.style.top,
912 left: element.style.left,
913 width: element.style.width,
914 height: element.style.height };
935 style: {}
937 if (typeof options.style == 'string') {
938 if(options.style.indexOf(':') == -1) {
939 var cssText = '', selector = '.' + options.style;
945 cssText = rule.style.cssText;
951 this.style = cssText.parseStyle();
953 effect.element.addClassName(effect.options.style);
955 if(transform.style != 'opacity')
956 effect.element.style[transform.style.camelize()] = '';
959 } else this.style = options.style.parseStyle();
960 } else this.style = $H(options.style)
971 this.transforms = this.style.map(function(pair){
987 style: property,
1003 var style = $H(), value = null;
1011 style[transform.style] = value;
1013 this.element.setStyle(style);
1030 options: { style: data }
1062 var style = element.down().style, styleRules = $H();
1065 if(style[property]) styleRules[property] = style[property];
1073 Element.morph = function(element, style) { argument
1074 new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || {}));