Lines Matching refs:style

152 …'class': [ NAMESPACE, CLASS_DEFAULT, options.style.classes, NAMESPACE + '-pos-' + options.position…
153 'width': options.style.width || '',
154 'height': options.style.height || '',
378 if('style' in opts && invalidOpt(opts.style)) {
379 opts.style = { classes: opts.style }; class in opts
657 'class': NAMESPACE + '-titlebar ' + (this.options.style.widget ? createWidgetClass('header') : '')
881 if(BROWSER.ie) { this.style.removeAttribute('filter'); }
1068 if(BROWSER.ie) { tooltip[0].style.removeAttribute('filter'); }
1129 curIndex = parseInt(tooltip[0].style.zIndex, 10),
1141 if(this.style.zIndex > curIndex) {
1142 this.style.zIndex = this.style.zIndex - 1;
1151 tooltip.addClass(CLASS_FOCUS)[0].style.zIndex = newIndex;
1212 'class': 'qtip-close ' + (this.options.style.widget ? '' : NAMESPACE+'-icon'),
1251 var on = this.options.style.widget,
1260 …-helper-reset '+createWidgetClass(), on).toggleClass(CLASS_DEFAULT, this.options.style.def && !on);
1955 style: { class in QTIP.defaults
2026 var createVML = function(tag, props, style) { argument
2028 ' style="behavior: url(#default#VML); '+(style||'')+ '" />';
2548 return new Tip(api, api.options.style.tip);
2556 if(options.style && 'tip' in options.style) {
2557 var opts = options.style.tip;
2558 if(typeof opts !== 'object') { opts = options.style.tip = { corner: opts }; }
2587 style: {
2657 (parseInt(container[0].style.zIndex, 10) > parseInt(tooltip[0].style.zIndex, 10));
2832 curIndex = parseInt(tooltip[0].style.zIndex, 10);
2835 OVERLAY.elem[0].style.zIndex = newIndex - 1;
2839 if(this.style.zIndex > curIndex) {
2840 this.style.zIndex -= 1;
2848 tooltip.addClass(CLASS_FOCUS)[0].style.zIndex = newIndex;
3317 overlay && (overlay[0].style.top = $(window).scrollTop() + 'px');
3375 style = this.qtip.options.style,
3383 if(style.height) { tooltip.css(HEIGHT, style.height); }
3384 if(style.width) { tooltip.css(WIDTH, style.width); }