Viewing File: /home/maglabs/valv/wp-content/plugins/depicter/app/src/Document/Models/Common/Styles/TextShadow.php

<?php
namespace Depicter\Document\Models\Common\Styles;


use Depicter\Document\CSS\Breakpoints;

class TextShadow extends States
{
	/**
	 * style name
	 */
	const NAME = 'text-shadow';

	/**
	 * @var int
	 */
	public $offsetX = 2;

	/**
	 * @var int
	 */
	public $offsetY = 2;

	/**
	 * @var int
	 */
	public $blur = 5;

	/**
	 * @var string
	 */
	public $color = 'rgba( 0, 0, 0, 0.5 )';

	public function set( $css ) {
		$devices = Breakpoints::names();
		foreach ( $devices as $device ) {
			if ( $this->isBreakpointEnabled( $device ) ) {
				$this->offsetX = $this->{$device}->offsetX ?? $this->offsetX;
				$this->offsetY = $this->{$device}->offsetY ?? $this->offsetY;
				$this->blur = $this->{$device}->blur ?? $this->blur;
				$this->color = $this->{$device}->color ?? $this->color;

				$css[$device][self::NAME] = $this->offsetX . "px " . $this->offsetY . 'px ' . $this->blur . 'px ' . $this->color;
			} elseif ( $this->isBreakpointDisabled( $device ) ) {
				$css[$device][ self::NAME ] = 'none';
			}
		}

		return $css;
	}
}
Back to Directory File Manager