Searched refs:colorValue (Results 1 – 6 of 6) sorted by relevance
| /template/strap/ComboStrap/ |
| H A D | TextColor.php | 39 $colorValue = $attributes->getValueAndRemove($colorAttribute); 40 $lowerCaseColorValue = strtolower($colorValue); 75 $colorValue = ColorRgb::createFromString($colorValue)->toCssValue(); 77 …LogUtility::msg("The text color value ($colorValue) is not a valid color. Error: {$e->getMessage()… 80 if (!empty($colorValue)) { 81 … $attributes->addStyleDeclarationIfNotSet(TextColor::CSS_ATTRIBUTE, $colorValue);
|
| H A D | ColorRgb.php | 582 $colorValue = "bs-" . $this->name; 585 $colorValue = $this->name; 588 return "var(--" . $colorValue . ")"; 806 function setRgbChannels(array $colorValue): ColorRgb argument 808 if (sizeof($colorValue) != 3) { 811 foreach ($colorValue as $color) { 821 [$this->red, $this->green, $this->blue] = $colorValue;
|
| H A D | FetcherSvg.php | 1255 $colorValue = $color->toCssValue(); 1263 $documentElement->setAttribute("fill", $colorValue); 1265 if ($colorValue !== FetcherSvg::CURRENT_COLOR) { 1293 $firsFillElement->setAttribute("fill", $colorValue); 1300 … $documentElement->setAttribute(FetcherSvg::STROKE_ATTRIBUTE, $colorValue); 1302 if ($colorValue !== FetcherSvg::CURRENT_COLOR) {
|
| H A D | PluginUtility.php | 454 $colorValue = $attributes->getValueAndRemove(ColorRgb::BORDER_COLOR); 455 …DeclarationIfNotSet(ColorRgb::BORDER_COLOR, ColorRgb::createFromString($colorValue)->toCssValue());
|
| /template/strap/ComboStrap/TagAttribute/ |
| H A D | BackgroundAttribute.php | 248 $colorValue = $tagAttributes->getValueAndRemove(self::BACKGROUND_COLOR); 251 if (strpos($colorValue, $gradientPrefix) === 0) { 257 … gradient color creates an image. You can't use the linear color (" . $colorValue . ") and the ima… 259 $mainColorValue = substr($colorValue, strlen($gradientPrefix)); 265 $colorValue = ColorRgb::createFromString($colorValue)->toCssValue(); 266 $tagAttributes->addStyleDeclarationIfNotSet(self::BACKGROUND_COLOR, $colorValue);
|
| /template/scanlines/htc/PIE-1.0beta5/ |
| D | PIE_uncompressed.js | 906 colorValue: function( el ) { method in Color 2679 shape.fill.color = color.colorValue( el ); 2870 …vmlOffsetPct + ( stopPx[ i ] / vmlGradientLength * 100 ) ) + '% ' + stops[i].color.colorValue( el ) 2879 fill['color'] = stops[0].color.colorValue( el ); 2880 fill['color2'] = stops[stopCount - 1].color.colorValue( el ); 2961 stroke.color = seg.color.colorValue( el ); 2965 shape.fill.color = seg.fill.colorValue( el ); 3371 fill.color = color.colorValue( el ); 3702 '" stop-color="' + stopsInfo[i].color.colorValue( el ) +
|