Lines Matching refs:css

456 			this.tooltip.css(o, v);
609 element.children().detach().end().append( content.css({ display: 'block' }) );
706 type = tooltip.css('position'),
847 tooltip.css(position);
855 $(this).css({ opacity: '', height: '' });
884 if((position = $.css(parent, 'position')) !== 'static') {
891 parentOffset.left += (parseFloat($.css(parent, 'borderLeftWidth')) || 0);
892 parentOffset.top += (parseFloat($.css(parent, 'borderTopWidth')) || 0);
895 pos.left -= parentOffset.left + (parseFloat($.css(parent, 'marginLeft')) || 0);
896 pos.top -= parentOffset.top + (parseFloat($.css(parent, 'marginTop')) || 0);
899 …if(!scrolled && (overflow = $.css(parent, 'overflow')) !== 'hidden' && overflow !== 'visible') { s…
969 width = this.tooltip.css('width'),
1009 if(!width) { tooltip.css('width', tooltip.outerWidth(FALSE)); }
1011 if(!width) { tooltip.css('width', ''); }
1043 tooltip.css('overflow', '');
1055 tooltip.css({
1137 this._trigger('blur', [ this.tooltip.css('zIndex') ], event);
1961 if(cssProps[prop]) { return elem.css(cssProps[prop]); }
1964 if((val = elem.css(cur)) !== undefined) {
2083 var val = elem.css(prop);
2084 return !val || (compare && val === elem.css(compare)) || INVALID.test(val) ? FALSE : val;
2089 tip = this.element.css('cssText', ''),
2092 css = this._invalidColour, color = [];
2095 color[0] = css(tip, BG_COLOR) || css(colorElem, BG_COLOR) || css(elements.content, BG_COLOR) ||
2096 css(tooltip, BG_COLOR) || tip.css(BG_COLOR);
2099 color[1] = css(tip, borderSide, COLOR) || css(colorElem, borderSide, COLOR) ||
2100css(elements.content, borderSide, COLOR) || css(tooltip, borderSide, COLOR) || tooltip.css(borderS…
2103 …$('*', tip).add(tip).css('cssText', BG_COLOR+':'+TRANSPARENT+IMPORTANT+';'+BORDER+':0'+IMPORTANT+'…
2234 tip.css({
2281 if(tooltip.css('background-clip') === 'border-box') {
2302 inner.css({
2378 tip.css({ margin: '', top: '', bottom: '', left: '', right: '' }).css(position);
2392 offset, css = {}, props;
2429 css[MARGIN+'-left'] = shift.x = offset[MARGIN+'-left'] - adjust.left;
2440 css[ offset.right !== undefined ? RIGHT : LEFT ] = shift.x;
2445 css[MARGIN+'-top'] = shift.y = offset[MARGIN+'-top'] - adjust.top;
2456 css[ offset.bottom !== undefined ? BOTTOM : TOP ] = shift.y;
2465 this.element.css(css).toggle(
2565 fixed = tooltip.css('position') === 'fixed';