Home
last modified time | relevance | path

Searched refs:str_value (Results 1 – 2 of 2) sorted by relevance

/plugin/pagecss/vendor/csstidy-2.2.1/
H A Dclass.csstidy_optimise.php789 * @param string $str_value
795 public function dissolve_short_bg($str_value) { argument
797 if (stripos($str_value, 'gradient(')!== false)
798 return array('background'=>$str_value);
809 if ($this->parser->is_important($str_value)) {
811 $str_value = $this->parser->gvw_important($str_value);
814 $str_value = $this->explode_ws(',', $str_value);
815 for ($i = 0; $i < count($str_value); $i++) {
821 if (is_array($str_value[$i])) {
822 $str_value[$i] = $str_value[$i][0];
[all …]
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
Dclass.csstidy_optimise.php633 * @param string $str_value
639 function dissolve_short_bg($str_value) argument
650 if(csstidy::is_important($str_value))
653 $str_value = csstidy::gvw_important($str_value);
656 $str_value = csstidy_optimise::explode_ws(',',$str_value);
657 for($i = 0; $i < count($str_value); $i++)
662 $str_value[$i] = csstidy_optimise::explode_ws(' ',trim($str_value[$i]));
664 for($j = 0; $j < count($str_value[$i]); $j++)
666 …if($have['bg'] === FALSE && (substr($str_value[$i][$j],0,4) == 'url(' || $str_value[$i][$j] === 'n…
668 $return['background-image'] .= $str_value[$i][$j].',';
[all …]