installed plugin W3 Total Cache
version 2.3.2
This commit is contained in:
1368
wp-content/plugins/w3-total-cache/lib/CSSTidy/class.csstidy.php
Normal file
1368
wp-content/plugins/w3-total-cache/lib/CSSTidy/class.csstidy.php
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,480 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* CSSTidy - CSS Parser and Optimiser
|
||||
*
|
||||
* CSS Printing class
|
||||
* This class prints CSS data generated by csstidy.
|
||||
*
|
||||
* Copyright 2005, 2006, 2007 Florian Schmitz
|
||||
*
|
||||
* This file is part of CSSTidy.
|
||||
*
|
||||
* CSSTidy is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation; either version 2.1 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* CSSTidy is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License
|
||||
* @package csstidy
|
||||
* @author Florian Schmitz (floele at gmail dot com) 2005-2007
|
||||
* @author Brett Zamir (brettz9 at yahoo dot com) 2007
|
||||
* @author Cedric Morin (cedric at yterium dot com) 2010-2012
|
||||
*/
|
||||
|
||||
/**
|
||||
* CSS Printing class
|
||||
*
|
||||
* This class prints CSS data generated by csstidy.
|
||||
*
|
||||
* @package csstidy
|
||||
* @author Florian Schmitz (floele at gmail dot com) 2005-2006
|
||||
* @version 1.1.0
|
||||
*/
|
||||
class csstidy_print {
|
||||
|
||||
/**
|
||||
* csstidy object
|
||||
* @var object
|
||||
*/
|
||||
public $parser;
|
||||
|
||||
/**
|
||||
* Saves the input CSS string
|
||||
* @var string
|
||||
* @access private
|
||||
*/
|
||||
public $input_css = '';
|
||||
/**
|
||||
* Saves the formatted CSS string
|
||||
* @var string
|
||||
* @access public
|
||||
*/
|
||||
public $output_css = '';
|
||||
/**
|
||||
* Saves the formatted CSS string (plain text)
|
||||
* @var string
|
||||
* @access public
|
||||
*/
|
||||
public $output_css_plain = '';
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param array $css contains the class csstidy
|
||||
* @access private
|
||||
* @version 1.0
|
||||
*/
|
||||
public function __construct($css) {
|
||||
$this->parser = $css;
|
||||
$this->css = & $css->css;
|
||||
$this->template = & $css->template;
|
||||
$this->tokens = & $css->tokens;
|
||||
$this->charset = & $css->charset;
|
||||
$this->import = & $css->import;
|
||||
$this->namespace = & $css->namespace;
|
||||
}
|
||||
|
||||
/**
|
||||
* Resets output_css and output_css_plain (new css code)
|
||||
* @access private
|
||||
* @version 1.0
|
||||
*/
|
||||
public function _reset() {
|
||||
$this->output_css = '';
|
||||
$this->output_css_plain = '';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the CSS code as plain text
|
||||
* @param string $default_media default @media to add to selectors without any @media
|
||||
* @return string
|
||||
* @access public
|
||||
* @version 1.0
|
||||
*/
|
||||
public function plain($default_media='') {
|
||||
$this->_print(true, $default_media);
|
||||
return $this->output_css_plain;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the formatted CSS code
|
||||
* @param string $default_media default @media to add to selectors without any @media
|
||||
* @return string
|
||||
* @access public
|
||||
* @version 1.0
|
||||
*/
|
||||
public function formatted($default_media='') {
|
||||
$this->_print(false, $default_media);
|
||||
return $this->output_css;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the formatted CSS code to make a complete webpage
|
||||
* @param string $doctype shorthand for the document type
|
||||
* @param bool $externalcss indicates whether styles to be attached internally or as an external stylesheet
|
||||
* @param string $title title to be added in the head of the document
|
||||
* @param string $lang two-letter language code to be added to the output
|
||||
* @return string
|
||||
* @access public
|
||||
* @version 1.4
|
||||
*/
|
||||
public function formatted_page($doctype='html5', $externalcss=true, $title='', $lang='en') {
|
||||
switch ($doctype) {
|
||||
case 'html5':
|
||||
$doctype_output = '<!DOCTYPE html>';
|
||||
break;
|
||||
case 'xhtml1.0strict':
|
||||
$doctype_output = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
|
||||
break;
|
||||
case 'xhtml1.1':
|
||||
default:
|
||||
$doctype_output = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
||||
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">';
|
||||
break;
|
||||
}
|
||||
|
||||
$output = $cssparsed = '';
|
||||
$this->output_css_plain = & $output;
|
||||
|
||||
$output .= $doctype_output . "\n" . '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="' . $lang . '"';
|
||||
$output .= ( $doctype === 'xhtml1.1') ? '>' : ' lang="' . $lang . '">';
|
||||
$output .= "\n<head>\n <title>$title</title>";
|
||||
|
||||
if ($externalcss) {
|
||||
$output .= "\n <style type=\"text/css\">\n";
|
||||
$cssparsed = file_get_contents('cssparsed.css');
|
||||
$output .= $cssparsed; // Adds an invisible BOM or something, but not in css_optimised.php
|
||||
$output .= "\n</style>";
|
||||
} else {
|
||||
$output .= "\n" . ' <link rel="stylesheet" type="text/css" href="cssparsed.css" />';
|
||||
}
|
||||
$output .= "\n</head>\n<body><code id=\"copytext\">";
|
||||
$output .= $this->formatted();
|
||||
$output .= '</code>' . "\n" . '</body></html>';
|
||||
return $this->output_css_plain;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the formatted CSS Code and saves it into $this->output_css and $this->output_css_plain
|
||||
* @param bool $plain plain text or not
|
||||
* @param string $default_media default @media to add to selectors without any @media
|
||||
* @access private
|
||||
* @version 2.0
|
||||
*/
|
||||
public function _print($plain = false, $default_media='') {
|
||||
if ($this->output_css && $this->output_css_plain) {
|
||||
return;
|
||||
}
|
||||
|
||||
$output = '';
|
||||
if (!$this->parser->get_cfg('preserve_css')) {
|
||||
$this->_convert_raw_css($default_media);
|
||||
}
|
||||
|
||||
$template = & $this->template;
|
||||
|
||||
if ($plain) {
|
||||
$template = array_map('strip_tags', $template);
|
||||
}
|
||||
|
||||
if ($this->parser->get_cfg('timestamp')) {
|
||||
array_unshift($this->tokens, array(COMMENT, ' CSSTidy ' . $this->parser->version . ': ' . date('r') . ' '));
|
||||
}
|
||||
|
||||
if (!empty($this->charset)) {
|
||||
$output .= $template[0] . '@charset ' . $template[5] . $this->charset . $template[6] . $template[13];
|
||||
}
|
||||
|
||||
if (!empty($this->import)) {
|
||||
for ($i = 0, $size = count($this->import); $i < $size; $i++) {
|
||||
if (substr($this->import[$i], 0, 4) === 'url(' && substr($this->import[$i], -1, 1) === ')') {
|
||||
$this->import[$i] = '"' . substr($this->import[$i], 4, -1) . '"';
|
||||
$this->parser->log('Optimised @import : Removed "url("', 'Information');
|
||||
}
|
||||
else if (!preg_match('/^".+"$/',$this->import[$i])) {
|
||||
// fixes a bug for @import ".." instead of the expected @import url("..")
|
||||
// If it comes in due to @import ".." the "" will be missing and the output will become @import .. (which is an error)
|
||||
$this->import[$i] = '"' . $this->import[$i] . '"';
|
||||
}
|
||||
|
||||
$output .= $template[0] . '@import ' . $template[5] . $this->import[$i] . $template[6] . $template[13];
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($this->namespace)) {
|
||||
if (($p=strpos($this->namespace,"url("))!==false && substr($this->namespace, -1, 1) === ')') {
|
||||
$this->namespace = substr_replace($this->namespace,'"',$p,4);
|
||||
$this->namespace = substr($this->namespace, 0, -1) . '"';
|
||||
$this->parser->log('Optimised @namespace : Removed "url("', 'Information');
|
||||
}
|
||||
$output .= $template[0] . '@namespace ' . $template[5] . $this->namespace . $template[6] . $template[13];
|
||||
}
|
||||
|
||||
$in_at_out = [];
|
||||
$out = & $output;
|
||||
$indent_level = 0;
|
||||
|
||||
foreach ($this->tokens as $key => $token) {
|
||||
switch ($token[0]) {
|
||||
case AT_START:
|
||||
$out .= $template[0] . $this->_htmlsp($token[1], $plain) . $template[1];
|
||||
$indent_level++;
|
||||
if (!isset($in_at_out[$indent_level])) {
|
||||
$in_at_out[$indent_level] = '';
|
||||
}
|
||||
$out = & $in_at_out[$indent_level];
|
||||
break;
|
||||
|
||||
case SEL_START:
|
||||
if ($this->parser->get_cfg('lowercase_s'))
|
||||
$token[1] = strtolower($token[1]);
|
||||
$out .= ( $token[1][0] !== '@') ? $template[2] . $this->_htmlsp($token[1], $plain) : $template[0] . $this->_htmlsp($token[1], $plain);
|
||||
$out .= $template[3];
|
||||
break;
|
||||
|
||||
case PROPERTY:
|
||||
if ($this->parser->get_cfg('case_properties') === 2) {
|
||||
$token[1] = strtoupper($token[1]);
|
||||
} elseif ($this->parser->get_cfg('case_properties') === 1) {
|
||||
$token[1] = strtolower($token[1]);
|
||||
}
|
||||
$out .= $template[4] . $this->_htmlsp($token[1], $plain) . ':' . $template[5];
|
||||
break;
|
||||
|
||||
case VALUE:
|
||||
$out .= $this->_htmlsp($token[1], $plain);
|
||||
if ($this->_seeknocomment($key, 1) == SEL_END && $this->parser->get_cfg('remove_last_;')) {
|
||||
$out .= str_replace(';', '', $template[6]);
|
||||
} else {
|
||||
$out .= $template[6];
|
||||
}
|
||||
break;
|
||||
|
||||
case SEL_END:
|
||||
$out .= $template[7];
|
||||
if ($this->_seeknocomment($key, 1) != AT_END)
|
||||
$out .= $template[8];
|
||||
break;
|
||||
|
||||
case AT_END:
|
||||
if (strlen($template[10])) {
|
||||
// indent the bloc we are closing
|
||||
$out = str_replace("\n\n", "\r\n", $out); // don't fill empty lines
|
||||
$out = str_replace("\n", "\n" . $template[10], $out);
|
||||
$out = str_replace("\r\n", "\n\n", $out);
|
||||
}
|
||||
if ($indent_level > 1) {
|
||||
$out = & $in_at_out[$indent_level-1];
|
||||
}
|
||||
else {
|
||||
$out = & $output;
|
||||
}
|
||||
$out .= $template[10] . $in_at_out[$indent_level];
|
||||
if ($this->_seeknocomment($key, 1) != AT_END) {
|
||||
$out .= $template[9];
|
||||
}
|
||||
else {
|
||||
$out .= rtrim($template[9]);
|
||||
}
|
||||
|
||||
unset($in_at_out[$indent_level]);
|
||||
$indent_level--;
|
||||
break;
|
||||
|
||||
case IMPORTANT_COMMENT:
|
||||
case COMMENT:
|
||||
$out .= $template[11] . '/*' . $this->_htmlsp($token[1], $plain) . '*/' . $template[12];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
$output = trim($output);
|
||||
|
||||
if (!$plain) {
|
||||
$this->output_css = $output;
|
||||
$this->_print(true);
|
||||
} else {
|
||||
// If using spaces in the template, don't want these to appear in the plain output
|
||||
$this->output_css_plain = str_replace(' ', '', $output);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the next token type which is $move away from $key, excluding comments
|
||||
* @param integer $key current position
|
||||
* @param integer $move move this far
|
||||
* @return mixed a token type
|
||||
* @access private
|
||||
* @version 1.0
|
||||
*/
|
||||
public function _seeknocomment($key, $move) {
|
||||
$go = ($move > 0) ? 1 : -1;
|
||||
for ($i = $key + 1; abs($key - $i) - 1 < abs($move); $i += $go) {
|
||||
if (!isset($this->tokens[$i])) {
|
||||
return;
|
||||
}
|
||||
if ($this->tokens[$i][0] == COMMENT) {
|
||||
$move += 1;
|
||||
continue;
|
||||
}
|
||||
return $this->tokens[$i][0];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts $this->css array to a raw array ($this->tokens)
|
||||
* @param string $default_media default @media to add to selectors without any @media
|
||||
* @access private
|
||||
* @version 1.0
|
||||
*/
|
||||
public function _convert_raw_css($default_media='') {
|
||||
$this->tokens = array();
|
||||
$sort_selectors = $this->parser->get_cfg('sort_selectors');
|
||||
$sort_properties = $this->parser->get_cfg('sort_properties');
|
||||
|
||||
// important comment section ?
|
||||
if (isset($this->css['!'])) {
|
||||
$this->parser->_add_token(IMPORTANT_COMMENT, rtrim($this->css['!']), true);
|
||||
unset($this->css['!']);
|
||||
}
|
||||
|
||||
foreach ($this->css as $medium => $val) {
|
||||
if ($sort_selectors)
|
||||
ksort($val);
|
||||
if (intval($medium) < DEFAULT_AT) {
|
||||
// un medium vide (contenant @font-face ou autre @) ne produit aucun conteneur
|
||||
if (strlen(trim($medium))) {
|
||||
$parts_to_open = explode('{', $medium);
|
||||
foreach ($parts_to_open as $part) {
|
||||
$this->parser->_add_token(AT_START, $part, true);
|
||||
}
|
||||
}
|
||||
} elseif ($default_media) {
|
||||
$this->parser->_add_token(AT_START, $default_media, true);
|
||||
}
|
||||
|
||||
foreach ($val as $selector => $vali) {
|
||||
if ($sort_properties)
|
||||
ksort($vali);
|
||||
$this->parser->_add_token(SEL_START, $selector, true);
|
||||
|
||||
$invalid = array(
|
||||
'*' => array(), // IE7 hacks first
|
||||
'_' => array(), // IE6 hacks
|
||||
'/' => array(), // IE6 hacks
|
||||
'-' => array() // IE6 hacks
|
||||
);
|
||||
foreach ($vali as $property => $valj) {
|
||||
if (strncmp($property,"//",2)!==0) {
|
||||
$matches = array();
|
||||
if ($sort_properties && preg_match('/^(\*|_|\/|-)(?!(ms|moz|o\b|xv|atsc|wap|khtml|webkit|ah|hp|ro|rim|tc)-)/', $property, $matches)) {
|
||||
$invalid[$matches[1]][$property] = $valj;
|
||||
} else {
|
||||
$this->parser->_add_token(PROPERTY, $property, true);
|
||||
$this->parser->_add_token(VALUE, $valj, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach ($invalid as $prefix => $props) {
|
||||
foreach ($props as $property => $valj) {
|
||||
$this->parser->_add_token(PROPERTY, $property, true);
|
||||
$this->parser->_add_token(VALUE, $valj, true);
|
||||
}
|
||||
}
|
||||
$this->parser->_add_token(SEL_END, $selector, true);
|
||||
}
|
||||
|
||||
if (intval($medium) < DEFAULT_AT) {
|
||||
// un medium vide (contenant @font-face ou autre @) ne produit aucun conteneur
|
||||
if (strlen(trim($medium))) {
|
||||
$parts_to_close = explode('{', $medium);
|
||||
foreach (array_reverse($parts_to_close) as $part) {
|
||||
$this->parser->_add_token(AT_END, $part, true);
|
||||
}
|
||||
}
|
||||
} elseif ($default_media) {
|
||||
$this->parser->_add_token(AT_END, $default_media, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Same as htmlspecialchars, only that chars are not replaced if $plain !== true. This makes print_code() cleaner.
|
||||
* @param string $string
|
||||
* @param bool $plain
|
||||
* @return string
|
||||
* @see csstidy_print::_print()
|
||||
* @access private
|
||||
* @version 1.0
|
||||
*/
|
||||
public function _htmlsp($string, $plain) {
|
||||
if (!$plain) {
|
||||
return htmlspecialchars($string, ENT_QUOTES, 'utf-8');
|
||||
}
|
||||
return $string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get compression ratio
|
||||
* @access public
|
||||
* @return float
|
||||
* @version 1.2
|
||||
*/
|
||||
public function get_ratio() {
|
||||
if (!$this->output_css_plain) {
|
||||
$this->formatted();
|
||||
}
|
||||
return round((strlen($this->input_css) - strlen($this->output_css_plain)) / strlen($this->input_css), 3) * 100;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get difference between the old and new code in bytes and prints the code if necessary.
|
||||
* @access public
|
||||
* @return string
|
||||
* @version 1.1
|
||||
*/
|
||||
public function get_diff() {
|
||||
if (!$this->output_css_plain) {
|
||||
$this->formatted();
|
||||
}
|
||||
|
||||
$diff = strlen($this->output_css_plain) - strlen($this->input_css);
|
||||
|
||||
if ($diff > 0) {
|
||||
return '+' . $diff;
|
||||
} elseif ($diff == 0) {
|
||||
return '+-' . $diff;
|
||||
}
|
||||
|
||||
return $diff;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the size of either input or output CSS in KB
|
||||
* @param string $loc default is "output"
|
||||
* @access public
|
||||
* @return integer
|
||||
* @version 1.0
|
||||
*/
|
||||
public function size($loc = 'output') {
|
||||
if ($loc === 'output' && !$this->output_css) {
|
||||
$this->formatted();
|
||||
}
|
||||
|
||||
if ($loc === 'input') {
|
||||
return (strlen($this->input_css) / 1000);
|
||||
} else {
|
||||
return (strlen($this->output_css_plain) / 1000);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
650
wp-content/plugins/w3-total-cache/lib/CSSTidy/data.inc.php
Normal file
650
wp-content/plugins/w3-total-cache/lib/CSSTidy/data.inc.php
Normal file
@ -0,0 +1,650 @@
|
||||
<?php
|
||||
/**
|
||||
* Various CSS Data for CSSTidy
|
||||
*
|
||||
* This file is part of CSSTidy.
|
||||
*
|
||||
* CSSTidy is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* CSSTidy is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with CSSTidy; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
* @package csstidy
|
||||
* @author Florian Schmitz (floele at gmail dot com) 2005
|
||||
* @author Nikolay Matsievsky (speed at webo dot name) 2010
|
||||
*/
|
||||
|
||||
/**
|
||||
* All whitespace allowed in CSS
|
||||
*
|
||||
* @global array $data['csstidy']['whitespace']
|
||||
* @version 1.0
|
||||
*/
|
||||
$data['csstidy']['whitespace'] = array(' ',"\n","\t","\r","\x0B");
|
||||
|
||||
/**
|
||||
* All CSS tokens used by csstidy
|
||||
*
|
||||
* @global string $data['csstidy']['tokens']
|
||||
* @version 1.0
|
||||
*/
|
||||
$data['csstidy']['tokens'] = '/@}{;:=\'"(,\\!$%&)*+.<>?[]^`|~';
|
||||
|
||||
/**
|
||||
* All CSS units (CSS 3 units included)
|
||||
*
|
||||
* @see compress_numbers()
|
||||
* @global array $data['csstidy']['units']
|
||||
* @version 1.0
|
||||
*/
|
||||
$data['csstidy']['units'] = array('in','cm','mm','pt','pc','px','rem','em','%','ex','gd','vw','vh','vm','deg','grad','rad','turn','ms','s','khz','hz','ch','vmin','vmax','dpi','dpcm','dppx');
|
||||
|
||||
/**
|
||||
* Available at-rules
|
||||
*
|
||||
* @global array $data['csstidy']['at_rules']
|
||||
* @version 1.1
|
||||
*/
|
||||
$data['csstidy']['at_rules'] = array('page' => 'is','font-face' => 'atis','charset' => 'iv', 'import' => 'iv','namespace' => 'iv','media' => 'at', 'supports' => 'at', 'keyframes' => 'at','-moz-keyframes' => 'at','-o-keyframes' => 'at','-webkit-keyframes' => 'at','-ms-keyframes' => 'at');
|
||||
|
||||
/**
|
||||
* Properties that need a value with unit
|
||||
*
|
||||
* @todo CSS3 properties
|
||||
* @see compress_numbers();
|
||||
* @global array $data['csstidy']['unit_values']
|
||||
* @version 1.2
|
||||
*/
|
||||
$data['csstidy']['unit_values'] = array ('background', 'background-position', 'background-size', 'border', 'border-top', 'border-right', 'border-bottom', 'border-left', 'border-width',
|
||||
'border-top-width', 'border-right-width', 'border-left-width', 'border-bottom-width', 'bottom', 'border-spacing', 'column-gap', 'column-width',
|
||||
'font-size', 'height', 'left', 'margin', 'margin-top', 'margin-right', 'margin-bottom', 'margin-left', 'max-height',
|
||||
'max-width', 'min-height', 'min-width', 'outline', 'outline-width', 'padding', 'padding-top', 'padding-right',
|
||||
'padding-bottom', 'padding-left', 'perspective', 'right', 'top', 'text-indent', 'letter-spacing', 'word-spacing', 'width');
|
||||
|
||||
/**
|
||||
* Properties that allow <color> as value
|
||||
*
|
||||
* @todo CSS3 properties
|
||||
* @see compress_numbers();
|
||||
* @global array $data['csstidy']['color_values']
|
||||
* @version 1.0
|
||||
*/
|
||||
$data['csstidy']['color_values'] = array();
|
||||
$data['csstidy']['color_values'][] = 'background-color';
|
||||
$data['csstidy']['color_values'][] = 'border-color';
|
||||
$data['csstidy']['color_values'][] = 'border-top-color';
|
||||
$data['csstidy']['color_values'][] = 'border-right-color';
|
||||
$data['csstidy']['color_values'][] = 'border-bottom-color';
|
||||
$data['csstidy']['color_values'][] = 'border-left-color';
|
||||
$data['csstidy']['color_values'][] = 'color';
|
||||
$data['csstidy']['color_values'][] = 'outline-color';
|
||||
$data['csstidy']['color_values'][] = 'column-rule-color';
|
||||
|
||||
/**
|
||||
* Default values for the background properties
|
||||
*
|
||||
* @todo Possibly property names will change during CSS3 development
|
||||
* @global array $data['csstidy']['background_prop_default']
|
||||
* @see dissolve_short_bg()
|
||||
* @see merge_bg()
|
||||
* @version 1.0
|
||||
*/
|
||||
$data['csstidy']['background_prop_default'] = array();
|
||||
$data['csstidy']['background_prop_default']['background-image'] = 'none';
|
||||
$data['csstidy']['background_prop_default']['background-size'] = 'auto';
|
||||
$data['csstidy']['background_prop_default']['background-repeat'] = 'repeat';
|
||||
$data['csstidy']['background_prop_default']['background-position'] = '0 0';
|
||||
$data['csstidy']['background_prop_default']['background-attachment'] = 'scroll';
|
||||
$data['csstidy']['background_prop_default']['background-clip'] = 'border';
|
||||
$data['csstidy']['background_prop_default']['background-origin'] = 'padding';
|
||||
$data['csstidy']['background_prop_default']['background-color'] = 'transparent';
|
||||
|
||||
/**
|
||||
* Default values for the font properties
|
||||
*
|
||||
* @global array $data['csstidy']['font_prop_default']
|
||||
* @see merge_fonts()
|
||||
* @version 1.3
|
||||
*/
|
||||
$data['csstidy']['font_prop_default'] = array();
|
||||
$data['csstidy']['font_prop_default']['font-style'] = 'normal';
|
||||
$data['csstidy']['font_prop_default']['font-variant'] = 'normal';
|
||||
$data['csstidy']['font_prop_default']['font-weight'] = 'normal';
|
||||
$data['csstidy']['font_prop_default']['font-size'] = '';
|
||||
$data['csstidy']['font_prop_default']['line-height'] = '';
|
||||
$data['csstidy']['font_prop_default']['font-family'] = '';
|
||||
|
||||
/**
|
||||
* A list of non-W3C color names which get replaced by their hex-codes
|
||||
*
|
||||
* @global array $data['csstidy']['replace_colors']
|
||||
* @see cut_color()
|
||||
* @version 1.0
|
||||
*/
|
||||
$data['csstidy']['replace_colors'] = array();
|
||||
$data['csstidy']['replace_colors']['aliceblue'] = '#f0f8ff';
|
||||
$data['csstidy']['replace_colors']['antiquewhite'] = '#faebd7';
|
||||
$data['csstidy']['replace_colors']['aquamarine'] = '#7fffd4';
|
||||
$data['csstidy']['replace_colors']['azure'] = '#f0ffff';
|
||||
$data['csstidy']['replace_colors']['beige'] = '#f5f5dc';
|
||||
$data['csstidy']['replace_colors']['bisque'] = '#ffe4c4';
|
||||
$data['csstidy']['replace_colors']['blanchedalmond'] = '#ffebcd';
|
||||
$data['csstidy']['replace_colors']['blueviolet'] = '#8a2be2';
|
||||
$data['csstidy']['replace_colors']['brown'] = '#a52a2a';
|
||||
$data['csstidy']['replace_colors']['burlywood'] = '#deb887';
|
||||
$data['csstidy']['replace_colors']['cadetblue'] = '#5f9ea0';
|
||||
$data['csstidy']['replace_colors']['chartreuse'] = '#7fff00';
|
||||
$data['csstidy']['replace_colors']['chocolate'] = '#d2691e';
|
||||
$data['csstidy']['replace_colors']['coral'] = '#ff7f50';
|
||||
$data['csstidy']['replace_colors']['cornflowerblue'] = '#6495ed';
|
||||
$data['csstidy']['replace_colors']['cornsilk'] = '#fff8dc';
|
||||
$data['csstidy']['replace_colors']['crimson'] = '#dc143c';
|
||||
$data['csstidy']['replace_colors']['cyan'] = '#00ffff';
|
||||
$data['csstidy']['replace_colors']['darkblue'] = '#00008b';
|
||||
$data['csstidy']['replace_colors']['darkcyan'] = '#008b8b';
|
||||
$data['csstidy']['replace_colors']['darkgoldenrod'] = '#b8860b';
|
||||
$data['csstidy']['replace_colors']['darkgray'] = '#a9a9a9';
|
||||
$data['csstidy']['replace_colors']['darkgreen'] = '#006400';
|
||||
$data['csstidy']['replace_colors']['darkkhaki'] = '#bdb76b';
|
||||
$data['csstidy']['replace_colors']['darkmagenta'] = '#8b008b';
|
||||
$data['csstidy']['replace_colors']['darkolivegreen'] = '#556b2f';
|
||||
$data['csstidy']['replace_colors']['darkorange'] = '#ff8c00';
|
||||
$data['csstidy']['replace_colors']['darkorchid'] = '#9932cc';
|
||||
$data['csstidy']['replace_colors']['darkred'] = '#8b0000';
|
||||
$data['csstidy']['replace_colors']['darksalmon'] = '#e9967a';
|
||||
$data['csstidy']['replace_colors']['darkseagreen'] = '#8fbc8f';
|
||||
$data['csstidy']['replace_colors']['darkslateblue'] = '#483d8b';
|
||||
$data['csstidy']['replace_colors']['darkslategray'] = '#2f4f4f';
|
||||
$data['csstidy']['replace_colors']['darkturquoise'] = '#00ced1';
|
||||
$data['csstidy']['replace_colors']['darkviolet'] = '#9400d3';
|
||||
$data['csstidy']['replace_colors']['deeppink'] = '#ff1493';
|
||||
$data['csstidy']['replace_colors']['deepskyblue'] = '#00bfff';
|
||||
$data['csstidy']['replace_colors']['dimgray'] = '#696969';
|
||||
$data['csstidy']['replace_colors']['dodgerblue'] = '#1e90ff';
|
||||
$data['csstidy']['replace_colors']['feldspar'] = '#d19275';
|
||||
$data['csstidy']['replace_colors']['firebrick'] = '#b22222';
|
||||
$data['csstidy']['replace_colors']['floralwhite'] = '#fffaf0';
|
||||
$data['csstidy']['replace_colors']['forestgreen'] = '#228b22';
|
||||
$data['csstidy']['replace_colors']['gainsboro'] = '#dcdcdc';
|
||||
$data['csstidy']['replace_colors']['ghostwhite'] = '#f8f8ff';
|
||||
$data['csstidy']['replace_colors']['gold'] = '#ffd700';
|
||||
$data['csstidy']['replace_colors']['goldenrod'] = '#daa520';
|
||||
$data['csstidy']['replace_colors']['greenyellow'] = '#adff2f';
|
||||
$data['csstidy']['replace_colors']['honeydew'] = '#f0fff0';
|
||||
$data['csstidy']['replace_colors']['hotpink'] = '#ff69b4';
|
||||
$data['csstidy']['replace_colors']['indianred'] = '#cd5c5c';
|
||||
$data['csstidy']['replace_colors']['indigo'] = '#4b0082';
|
||||
$data['csstidy']['replace_colors']['ivory'] = '#fffff0';
|
||||
$data['csstidy']['replace_colors']['khaki'] = '#f0e68c';
|
||||
$data['csstidy']['replace_colors']['lavender'] = '#e6e6fa';
|
||||
$data['csstidy']['replace_colors']['lavenderblush'] = '#fff0f5';
|
||||
$data['csstidy']['replace_colors']['lawngreen'] = '#7cfc00';
|
||||
$data['csstidy']['replace_colors']['lemonchiffon'] = '#fffacd';
|
||||
$data['csstidy']['replace_colors']['lightblue'] = '#add8e6';
|
||||
$data['csstidy']['replace_colors']['lightcoral'] = '#f08080';
|
||||
$data['csstidy']['replace_colors']['lightcyan'] = '#e0ffff';
|
||||
$data['csstidy']['replace_colors']['lightgoldenrodyellow'] = '#fafad2';
|
||||
$data['csstidy']['replace_colors']['lightgrey'] = '#d3d3d3';
|
||||
$data['csstidy']['replace_colors']['lightgreen'] = '#90ee90';
|
||||
$data['csstidy']['replace_colors']['lightpink'] = '#ffb6c1';
|
||||
$data['csstidy']['replace_colors']['lightsalmon'] = '#ffa07a';
|
||||
$data['csstidy']['replace_colors']['lightseagreen'] = '#20b2aa';
|
||||
$data['csstidy']['replace_colors']['lightskyblue'] = '#87cefa';
|
||||
$data['csstidy']['replace_colors']['lightslateblue'] = '#8470ff';
|
||||
$data['csstidy']['replace_colors']['lightslategray'] = '#778899';
|
||||
$data['csstidy']['replace_colors']['lightsteelblue'] = '#b0c4de';
|
||||
$data['csstidy']['replace_colors']['lightyellow'] = '#ffffe0';
|
||||
$data['csstidy']['replace_colors']['limegreen'] = '#32cd32';
|
||||
$data['csstidy']['replace_colors']['linen'] = '#faf0e6';
|
||||
$data['csstidy']['replace_colors']['magenta'] = '#ff00ff';
|
||||
$data['csstidy']['replace_colors']['mediumaquamarine'] = '#66cdaa';
|
||||
$data['csstidy']['replace_colors']['mediumblue'] = '#0000cd';
|
||||
$data['csstidy']['replace_colors']['mediumorchid'] = '#ba55d3';
|
||||
$data['csstidy']['replace_colors']['mediumpurple'] = '#9370d8';
|
||||
$data['csstidy']['replace_colors']['mediumseagreen'] = '#3cb371';
|
||||
$data['csstidy']['replace_colors']['mediumslateblue'] = '#7b68ee';
|
||||
$data['csstidy']['replace_colors']['mediumspringgreen'] = '#00fa9a';
|
||||
$data['csstidy']['replace_colors']['mediumturquoise'] = '#48d1cc';
|
||||
$data['csstidy']['replace_colors']['mediumvioletred'] = '#c71585';
|
||||
$data['csstidy']['replace_colors']['midnightblue'] = '#191970';
|
||||
$data['csstidy']['replace_colors']['mintcream'] = '#f5fffa';
|
||||
$data['csstidy']['replace_colors']['mistyrose'] = '#ffe4e1';
|
||||
$data['csstidy']['replace_colors']['moccasin'] = '#ffe4b5';
|
||||
$data['csstidy']['replace_colors']['navajowhite'] = '#ffdead';
|
||||
$data['csstidy']['replace_colors']['oldlace'] = '#fdf5e6';
|
||||
$data['csstidy']['replace_colors']['olivedrab'] = '#6b8e23';
|
||||
$data['csstidy']['replace_colors']['orangered'] = '#ff4500';
|
||||
$data['csstidy']['replace_colors']['orchid'] = '#da70d6';
|
||||
$data['csstidy']['replace_colors']['palegoldenrod'] = '#eee8aa';
|
||||
$data['csstidy']['replace_colors']['palegreen'] = '#98fb98';
|
||||
$data['csstidy']['replace_colors']['paleturquoise'] = '#afeeee';
|
||||
$data['csstidy']['replace_colors']['palevioletred'] = '#d87093';
|
||||
$data['csstidy']['replace_colors']['papayawhip'] = '#ffefd5';
|
||||
$data['csstidy']['replace_colors']['peachpuff'] = '#ffdab9';
|
||||
$data['csstidy']['replace_colors']['peru'] = '#cd853f';
|
||||
$data['csstidy']['replace_colors']['pink'] = '#ffc0cb';
|
||||
$data['csstidy']['replace_colors']['plum'] = '#dda0dd';
|
||||
$data['csstidy']['replace_colors']['powderblue'] = '#b0e0e6';
|
||||
$data['csstidy']['replace_colors']['rosybrown'] = '#bc8f8f';
|
||||
$data['csstidy']['replace_colors']['royalblue'] = '#4169e1';
|
||||
$data['csstidy']['replace_colors']['saddlebrown'] = '#8b4513';
|
||||
$data['csstidy']['replace_colors']['salmon'] = '#fa8072';
|
||||
$data['csstidy']['replace_colors']['sandybrown'] = '#f4a460';
|
||||
$data['csstidy']['replace_colors']['seagreen'] = '#2e8b57';
|
||||
$data['csstidy']['replace_colors']['seashell'] = '#fff5ee';
|
||||
$data['csstidy']['replace_colors']['sienna'] = '#a0522d';
|
||||
$data['csstidy']['replace_colors']['skyblue'] = '#87ceeb';
|
||||
$data['csstidy']['replace_colors']['slateblue'] = '#6a5acd';
|
||||
$data['csstidy']['replace_colors']['slategray'] = '#708090';
|
||||
$data['csstidy']['replace_colors']['snow'] = '#fffafa';
|
||||
$data['csstidy']['replace_colors']['springgreen'] = '#00ff7f';
|
||||
$data['csstidy']['replace_colors']['steelblue'] = '#4682b4';
|
||||
$data['csstidy']['replace_colors']['tan'] = '#d2b48c';
|
||||
$data['csstidy']['replace_colors']['thistle'] = '#d8bfd8';
|
||||
$data['csstidy']['replace_colors']['tomato'] = '#ff6347';
|
||||
$data['csstidy']['replace_colors']['turquoise'] = '#40e0d0';
|
||||
$data['csstidy']['replace_colors']['violet'] = '#ee82ee';
|
||||
$data['csstidy']['replace_colors']['violetred'] = '#d02090';
|
||||
$data['csstidy']['replace_colors']['wheat'] = '#f5deb3';
|
||||
$data['csstidy']['replace_colors']['whitesmoke'] = '#f5f5f5';
|
||||
$data['csstidy']['replace_colors']['yellowgreen'] = '#9acd32';
|
||||
|
||||
/**
|
||||
* A list of all shorthand properties that are devided into four properties and/or have four subvalues
|
||||
*
|
||||
* @global array $data['csstidy']['shorthands']
|
||||
* @todo Are there new ones in CSS3?
|
||||
* @see dissolve_4value_shorthands()
|
||||
* @see merge_4value_shorthands()
|
||||
* @version 1.0
|
||||
*/
|
||||
$data['csstidy']['shorthands'] = array();
|
||||
$data['csstidy']['shorthands']['border-color'] = array('border-top-color','border-right-color','border-bottom-color','border-left-color');
|
||||
$data['csstidy']['shorthands']['border-style'] = array('border-top-style','border-right-style','border-bottom-style','border-left-style');
|
||||
$data['csstidy']['shorthands']['border-width'] = array('border-top-width','border-right-width','border-bottom-width','border-left-width');
|
||||
$data['csstidy']['shorthands']['margin'] = array('margin-top','margin-right','margin-bottom','margin-left');
|
||||
$data['csstidy']['shorthands']['padding'] = array('padding-top','padding-right','padding-bottom','padding-left');
|
||||
|
||||
$data['csstidy']['radius_shorthands']['border-radius'] = array('border-top-left-radius','border-top-right-radius','border-bottom-right-radius','border-bottom-left-radius');
|
||||
$data['csstidy']['radius_shorthands']['-webkit-border-radius'] = array('-webkit-border-top-left-radius','-webkit-border-top-right-radius','-webkit-border-bottom-right-radius','-webkit-border-bottom-left-radius');
|
||||
$data['csstidy']['radius_shorthands']['-moz-border-radius'] = array('-moz-border-radius-topleft','-moz-border-radius-topright','-moz-border-radius-bottomright','-moz-border-radius-bottomleft');
|
||||
|
||||
/**
|
||||
* All CSS Properties. Needed for csstidy::property_is_next()
|
||||
*
|
||||
* @global array $data['csstidy']['all_properties']
|
||||
* @version 1.1
|
||||
* @see csstidy::property_is_next()
|
||||
*/
|
||||
$data['csstidy']['all_properties']['alignment-adjust'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['alignment-baseline'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['animation'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['animation-delay'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['animation-direction'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['animation-duration'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['animation-iteration-count'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['animation-name'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['animation-play-state'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['animation-timing-function'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['appearance'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['azimuth'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['backface-visibility'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['background'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['background-attachment'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['background-clip'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['background-color'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['background-image'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['background-origin'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['background-position'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['background-repeat'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['background-size'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['baseline-shift'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['binding'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['bleed'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['bookmark-label'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['bookmark-level'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['bookmark-state'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['bookmark-target'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-bottom'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-bottom-color'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-bottom-left-radius'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-bottom-right-radius'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-bottom-style'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-bottom-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-collapse'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-color'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-image'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-image-outset'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-image-repeat'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-image-slice'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-image-source'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-image-width'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-left'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-left-color'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-left-style'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-left-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-radius'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-right'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-right-color'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-right-style'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-right-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-spacing'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-style'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-top'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-top-color'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-top-left-radius'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-top-right-radius'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-top-style'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-top-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['border-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['bottom'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['box-decoration-break'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['box-shadow'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['box-sizing'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['break-after'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['break-before'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['break-inside'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['caption-side'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['clear'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['clip'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['color'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['color-profile'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['column-count'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['column-fill'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['column-gap'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['column-rule'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['column-rule-color'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['column-rule-style'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['column-rule-width'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['column-span'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['column-width'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['columns'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['content'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['counter-increment'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['counter-reset'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['crop'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['cue'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['cue-after'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['cue-before'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['cursor'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['direction'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['display'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['dominant-baseline'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['drop-initial-after-adjust'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['drop-initial-after-align'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['drop-initial-before-adjust'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['drop-initial-before-align'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['drop-initial-size'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['drop-initial-value'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['elevation'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['empty-cells'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['fit'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['fit-position'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['flex-align'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['flex-flow'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['flex-line-pack'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['flex-order'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['flex-pack'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['float'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['float-offset'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['font'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['font-family'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['font-size'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['font-size-adjust'] = 'CSS2.0,CSS3.0';
|
||||
$data['csstidy']['all_properties']['font-stretch'] = 'CSS2.0,CSS3.0';
|
||||
$data['csstidy']['all_properties']['font-style'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['font-variant'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['font-weight'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['grid-columns'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['grid-rows'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['hanging-punctuation'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['height'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['hyphenate-after'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['hyphenate-before'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['hyphenate-character'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['hyphenate-lines'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['hyphenate-resource'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['hyphens'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['icon'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['image-orientation'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['image-rendering'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['image-resolution'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['inline-box-align'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['left'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['letter-spacing'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['line-break'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['line-height'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['line-stacking'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['line-stacking-ruby'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['line-stacking-shift'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['line-stacking-strategy'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['list-style'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['list-style-image'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['list-style-position'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['list-style-type'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['margin'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['margin-bottom'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['margin-left'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['margin-right'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['margin-top'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['marker-offset'] = 'CSS2.0,CSS3.0';
|
||||
$data['csstidy']['all_properties']['marks'] = 'CSS2.0,CSS3.0';
|
||||
$data['csstidy']['all_properties']['marquee-direction'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['marquee-loop'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['marquee-play-count'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['marquee-speed'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['marquee-style'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['max-height'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['max-width'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['min-height'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['min-width'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['move-to'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['nav-down'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['nav-index'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['nav-left'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['nav-right'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['nav-up'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['opacity'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['orphans'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['outline'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['outline-color'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['outline-offset'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['outline-style'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['outline-width'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['overflow'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['overflow-style'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['overflow-wrap'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['overflow-x'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['overflow-y'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['padding'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['padding-bottom'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['padding-left'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['padding-right'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['padding-top'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['page'] = 'CSS2.0,CSS3.0';
|
||||
$data['csstidy']['all_properties']['page-break-after'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['page-break-before'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['page-break-inside'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['page-policy'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['pause'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['pause-after'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['pause-before'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['perspective'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['perspective-origin'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['phonemes'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['pitch'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['pitch-range'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['play-during'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['position'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['presentation-level'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['punctuation-trim'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['quotes'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['rendering-intent'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['resize'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['rest'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['rest-after'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['rest-before'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['richness'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['right'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['rotation'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['rotation-point'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['ruby-align'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['ruby-overhang'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['ruby-position'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['ruby-span'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['size'] = 'CSS2.0,CSS3.0';
|
||||
$data['csstidy']['all_properties']['speak'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['speak-header'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['speak-numeral'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['speak-punctuation'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['speech-rate'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['src'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['stress'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['string-set'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['tab-size'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['table-layout'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['target'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['target-name'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['target-new'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['target-position'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-align'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-align-last'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-decoration'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-decoration-color'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-decoration-line'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-decoration-skip'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-decoration-style'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-emphasis'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-emphasis-color'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-emphasis-position'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-emphasis-style'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-height'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-indent'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-justify'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-outline'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-shadow'] = 'CSS2.0,CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-space-collapse'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-transform'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-underline-position'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['text-wrap'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['top'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['transform'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['transform-origin'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['transform-style'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['transition'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['transition-delay'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['transition-duration'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['transition-property'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['transition-timing-function'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['unicode-bidi'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['vertical-align'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['visibility'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['voice-balance'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['voice-duration'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['voice-family'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['voice-pitch'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['voice-pitch-range'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['voice-rate'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['voice-stress'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['voice-volume'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['volume'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['white-space'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['widows'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['word-break'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['word-spacing'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['word-wrap'] = 'CSS3.0';
|
||||
$data['csstidy']['all_properties']['z-index'] = 'CSS2.0,CSS2.1,CSS3.0';
|
||||
$data['csstidy']['all_properties']['--custom'] = 'CSS3.0';
|
||||
|
||||
/**
|
||||
* An array containing all properties that can accept a quoted string as a value.
|
||||
*
|
||||
* @global array $data['csstidy']['quoted_string_properties']
|
||||
*/
|
||||
$data['csstidy']['quoted_string_properties'] = array('content', 'font-family', 'quotes');
|
||||
|
||||
/**
|
||||
* An array containing all properties that can be defined multiple times without being overwritten.
|
||||
*
|
||||
* @global array $data['csstidy']['quoted_string_properties']
|
||||
*/
|
||||
$data['csstidy']['multiple_properties'] = array('background', 'background-image');
|
||||
|
||||
/**
|
||||
* An array containing all predefined templates.
|
||||
*
|
||||
* @global array $data['csstidy']['predefined_templates']
|
||||
* @version 1.0
|
||||
* @see csstidy::load_template()
|
||||
*/
|
||||
$data['csstidy']['predefined_templates']['default'][0] = '<span class="at">'; //string before @rule
|
||||
$data['csstidy']['predefined_templates']['default'][1] = '</span> <span class="format">{</span>'."\n"; //bracket after @-rule
|
||||
$data['csstidy']['predefined_templates']['default'][2] = '<span class="selector">'; //string before selector
|
||||
$data['csstidy']['predefined_templates']['default'][3] = '</span> <span class="format">{</span>'."\n"; //bracket after selector
|
||||
$data['csstidy']['predefined_templates']['default'][4] = '<span class="property">'; //string before property
|
||||
$data['csstidy']['predefined_templates']['default'][5] = '</span><span class="value">'; //string after property+before value
|
||||
$data['csstidy']['predefined_templates']['default'][6] = '</span><span class="format">;</span>'."\n"; //string after value
|
||||
$data['csstidy']['predefined_templates']['default'][7] = '<span class="format">}</span>'; //closing bracket - selector
|
||||
$data['csstidy']['predefined_templates']['default'][8] = "\n\n"; //space between blocks {...}
|
||||
$data['csstidy']['predefined_templates']['default'][9] = "\n".'<span class="format">}</span>'. "\n\n"; //closing bracket @-rule
|
||||
$data['csstidy']['predefined_templates']['default'][10] = ''; //indent in @-rule
|
||||
$data['csstidy']['predefined_templates']['default'][11] = '<span class="comment">'; // before comment
|
||||
$data['csstidy']['predefined_templates']['default'][12] = '</span>'."\n"; // after comment
|
||||
$data['csstidy']['predefined_templates']['default'][13] = "\n"; // after each line @-rule
|
||||
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="at">';
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '</span> <span class="format">{</span>'."\n";
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="selector">';
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '</span><span class="format">{</span>';
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="property">';
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '</span><span class="value">';
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '</span><span class="format">;</span>';
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="format">}</span>';
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = "\n";
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = "\n". '<span class="format">}'."\n".'</span>';
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '';
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="comment">'; // before comment
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = '</span>'."\n"; // after comment
|
||||
$data['csstidy']['predefined_templates']['high_compression'][] = "\n";
|
||||
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="at">';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '</span><span class="format">{</span>';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="selector">';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '</span><span class="format">{</span>';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="property">';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '</span><span class="value">';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '</span><span class="format">;</span>';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="format">}</span>';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="format">}</span>';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '';
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="comment">'; // before comment
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '</span>'; // after comment
|
||||
$data['csstidy']['predefined_templates']['highest_compression'][] = '';
|
||||
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = '<span class="at">';
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = '</span> <span class="format">{</span>'."\n";
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = '<span class="selector">';
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = '</span>'."\n".'<span class="format">{</span>'."\n";
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = ' <span class="property">';
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = '</span><span class="value">';
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = '</span><span class="format">;</span>'."\n";
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = '<span class="format">}</span>';
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = "\n\n";
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = "\n".'<span class="format">}</span>'."\n\n";
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = ' ';
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = '<span class="comment">'; // before comment
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = '</span>'."\n"; // after comment
|
||||
$data['csstidy']['predefined_templates']['low_compression'][] = "\n";
|
Reference in New Issue
Block a user