Lines Matching refs:css

455 			this.rendered && this.tooltip.css(o, v);
610 content.css({ display: 'block', visibility: 'visible' })
713 type = tooltip.css('position'),
872 tooltip.css(position);
880 $(this).css({ opacity: '', height: '' });
909 if((position = $.css(parent, 'position')) !== 'static') {
916 parentOffset.left += (parseFloat($.css(parent, 'borderLeftWidth')) || 0);
917 parentOffset.top += (parseFloat($.css(parent, 'borderTopWidth')) || 0);
920 pos.left -= parentOffset.left + (parseFloat($.css(parent, 'marginLeft')) || 0);
921 pos.top -= parentOffset.top + (parseFloat($.css(parent, 'marginTop')) || 0);
924 …if(!scrolled && (overflow = $.css(parent, 'overflow')) !== 'hidden' && overflow !== 'visible') { s…
994 width = this.tooltip.css('width'),
1037 if(!width) { tooltip.css('width', tooltip.outerWidth(FALSE)); }
1039 if(!width) { tooltip.css('width', ''); }
1071 tooltip.css('overflow', '');
1083 tooltip.css({
1165 this._trigger('blur', [ this.tooltip.css('zIndex') ], event);
2009 if(cssProps[prop]) { return elem.css(cssProps[prop]); }
2012 if((val = elem.css(cur)) !== undefined) {
2141 var val = elem.css(prop);
2142 return !val || (compare && val === elem.css(compare)) || INVALID.test(val) ? FALSE : val;
2147 tip = this.element.css('cssText', ''),
2150 css = this._invalidColour, color = [];
2153 color[0] = css(tip, BG_COLOR) || css(colorElem, BG_COLOR) || css(elements.content, BG_COLOR) ||
2154 css(elements.tooltip, BG_COLOR) || tip.css(BG_COLOR);
2157 color[1] = css(tip, borderSide, COLOR) || css(colorElem, borderSide, COLOR) ||
2158css(elements.content, borderSide, COLOR) || css(elements.tooltip, borderSide, COLOR) || elements.t…
2161 …$('*', tip).add(tip).css('cssText', BG_COLOR+':'+TRANSPARENT+IMPORTANT+';'+BORDER+':0'+IMPORTANT+'…
2301 tip.css({
2334 inner.css(WIDTH, newSize[0]).css(HEIGHT, newSize[1]);
2362 inner.css({
2393 elements.tip.css({
2447 tip.css({ margin: '', top: '', bottom: '', left: '', right: '' }).css(position);
2461 offset, css = {}, props;
2476 css[MARGIN+'-'+side] = shift[xy] = offset[MARGIN+'-'+side] - adjust[side];
2487 css[ offset[opposite] !== undefined ? opposite : side ] = shift[xy];
2520 this.element.css(css).toggle(
2768 elem.css({ left: '', top: '' });
2806 tooltip.addClass(MODALCLASS).css('z-index', QTIP.modal_zindex + $(MODALSELECTOR).length);
2955 containerStatic = container.css('position') === 'static';
2958 fixed = tooltip.css('position') === 'fixed';
3173 rootWidth = root.attr('width') || root.width() || parseInt(root.css('width'), 10);
3174 rootHeight = root.attr('height') || root.height() || parseInt(root.css('height'), 10);
3177 var strokeWidth2 = (parseInt(svg.css('stroke-width'), 10) || 0) / 2;
3357 offset = parseInt(tooltip.css('borderLeftWidth'), 10) || 0;
3367 this.bgiframe.css(offset).css(dimensions);
3383 if(style.height) { tooltip.css(HEIGHT, style.height); }
3384 if(style.width) { tooltip.css(WIDTH, style.width); }
3389 tooltip.css(WIDTH, '').appendTo(this.redrawContainer);
3396 max = tooltip.css('maxWidth') || '';
3397 min = tooltip.css('minWidth') || '';
3408 tooltip.css(WIDTH, Math.round(width)).appendTo(container);