Lines Matching refs:border

1934 BORDER = 'border',
2098 // Attempt to detect the correct border side colour from various elements, left-to-right precedance
2102 // Reset background and border colours
2119 hyp = [ (this.border / base) * smallHyp, (this.border / height) * smallHyp ];
2121 hyp[2] = Math.sqrt( pow(hyp[0], 2) - pow(this.border, 2) );
2122 hyp[3] = Math.sqrt( pow(hyp[1], 2) - pow(this.border, 2) );
2186 coords, translate, newSize, border;
2214 // Detect border width, taking into account colours
2216 // Grab border width
2217 border = this.border = this._parseWidth(corner, corner[corner.precedance]);
2219 // If border width isn't zero, use border color as fill (1.0 style tips)
2220 if(options.border && border < 1) { color[0] = color[1]; }
2222 // Set border width (use detected border width if options.border is true)
2223 this.border = border = options.border !== TRUE ? options.border : border;
2226 // Border colour was invalid, set border to zero
2227 else { this.border = border = 0; }
2243 round(mimic.x === LEFT ? border : mimic.x === RIGHT ? newSize[0] - size[0] - border : (newSize[0] - size[0]) / 2),
2250 round(mimic.y === TOP ? border : mimic.y === BOTTOM ? newSize[1] - size[1] - border : (newSize[1] - size[1]) / 2)
2267 context.lineWidth = border * 2;
2277 // Apply fill and border
2278 if(border) {
2281 if(tooltip.css('background-clip') === 'border-box') {
2298 translate[2] = border && /^(r|b)/i.test(corner.string()) ?
2303 coordsize: (size[0]+border) + ' ' + (size[1]+border),
2307 width: size[0] + border,
2308 height: size[1] + border
2315 coordsize: (size[0]+border) + ' ' + (size[1]+border),
2321 .toggle(!!(border || i));
2323 // Check if border is enabled and add stroke element
2325 'stroke', 'weight="'+(border*2)+'px" color="'+color[1]+'" miterlimit="1000" joinstyle="miter"'
2370 position[ side ] = Math.max(-self.border, i ? bc : (userOffset + (br > b ? br : -b)));
2463 * outer border, hide it!
2508 '^position.my|style.tip.(corner|mimic|border)$': function() {
2536 border: TRUE,