summaryrefslogtreecommitdiffstats
path: root/vendor/wikimedia/less.php/lib/Less/Tree/Alpha.php
blob: bdf5dee751b6d85699f640c0139b9ef029c95c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
 * @private
 */
class Less_Tree_Alpha extends Less_Tree {
	public $value;
	public $type = 'Alpha';

	public function __construct( $val ) {
		$this->value = $val;
	}

	// function accept( $visitor ){
	//	$this->value = $visitor->visit( $this->value );
	//}

	public function compile( $env ) {
		if ( is_object( $this->value ) ) {
			$this->value = $this->value->compile( $env );
		}

		return $this;
	}

	/**
	 * @see Less_Tree::genCSS
	 */
	public function genCSS( $output ) {
		$output->add( "alpha(opacity=" );

		if ( is_string( $this->value ) ) {
			$output->add( $this->value );
		} else {
			$this->value->genCSS( $output );
		}

		$output->add( ')' );
	}

	public function toCSS() {
		return "alpha(opacity=" . ( is_string( $this->value ) ? $this->value : $this->value->toCSS() ) . ")";
	}

}