xref: /plugin/pagecss/vendor/csstidy-2.2.1/data.inc.php (revision 7d6669007238fef7e8728f167d637ed824899eb0)
1*7d666900SdWiGhT<?php
2*7d666900SdWiGhT/**
3*7d666900SdWiGhT * Various CSS Data for CSSTidy
4*7d666900SdWiGhT *
5*7d666900SdWiGhT * This file is part of CSSTidy.
6*7d666900SdWiGhT *
7*7d666900SdWiGhT * CSSTidy is free software; you can redistribute it and/or modify
8*7d666900SdWiGhT * it under the terms of the GNU General Public License as published by
9*7d666900SdWiGhT * the Free Software Foundation; either version 2 of the License, or
10*7d666900SdWiGhT * (at your option) any later version.
11*7d666900SdWiGhT *
12*7d666900SdWiGhT * CSSTidy is distributed in the hope that it will be useful,
13*7d666900SdWiGhT * but WITHOUT ANY WARRANTY; without even the implied warranty of
14*7d666900SdWiGhT * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15*7d666900SdWiGhT * GNU General Public License for more details.
16*7d666900SdWiGhT *
17*7d666900SdWiGhT * You should have received a copy of the GNU General Public License
18*7d666900SdWiGhT * along with CSSTidy; if not, write to the Free Software
19*7d666900SdWiGhT * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20*7d666900SdWiGhT *
21*7d666900SdWiGhT * @license http://opensource.org/licenses/gpl-license.php GNU Public License
22*7d666900SdWiGhT * @package csstidy
23*7d666900SdWiGhT * @author Florian Schmitz (floele at gmail dot com) 2005
24*7d666900SdWiGhT * @author Nikolay Matsievsky (speed at webo dot name) 2010
25*7d666900SdWiGhT */
26*7d666900SdWiGhT
27*7d666900SdWiGhT/**
28*7d666900SdWiGhT * All whitespace allowed in CSS
29*7d666900SdWiGhT *
30*7d666900SdWiGhT * @global array $data['csstidy']['whitespace']
31*7d666900SdWiGhT * @version 1.0
32*7d666900SdWiGhT */
33*7d666900SdWiGhT$data['csstidy']['whitespace'] = array(' ',"\n","\t","\r","\x0B");
34*7d666900SdWiGhT
35*7d666900SdWiGhT/**
36*7d666900SdWiGhT * All CSS tokens used by csstidy
37*7d666900SdWiGhT *
38*7d666900SdWiGhT * @global string $data['csstidy']['tokens']
39*7d666900SdWiGhT * @version 1.0
40*7d666900SdWiGhT */
41*7d666900SdWiGhT$data['csstidy']['tokens'] = '/@}{;:=\'"(,\\!$%&)*+.<>?[]^`|~';
42*7d666900SdWiGhT
43*7d666900SdWiGhT/**
44*7d666900SdWiGhT * All CSS units (CSS 3 units included)
45*7d666900SdWiGhT *
46*7d666900SdWiGhT * @see compress_numbers()
47*7d666900SdWiGhT * @global array $data['csstidy']['units']
48*7d666900SdWiGhT * @version 1.0
49*7d666900SdWiGhT */
50*7d666900SdWiGhT$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');
51*7d666900SdWiGhT
52*7d666900SdWiGhT/**
53*7d666900SdWiGhT * Available at-rules
54*7d666900SdWiGhT *
55*7d666900SdWiGhT * @global array $data['csstidy']['at_rules']
56*7d666900SdWiGhT * @version 1.1
57*7d666900SdWiGhT */
58*7d666900SdWiGhT$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','container' => 'at');
59*7d666900SdWiGhT
60*7d666900SdWiGhT /**
61*7d666900SdWiGhT * Properties that need a value with unit
62*7d666900SdWiGhT *
63*7d666900SdWiGhT * @todo CSS3 properties
64*7d666900SdWiGhT * @see compress_numbers();
65*7d666900SdWiGhT * @global array $data['csstidy']['unit_values']
66*7d666900SdWiGhT * @version 1.2
67*7d666900SdWiGhT */
68*7d666900SdWiGhT$data['csstidy']['unit_values'] = array ('background', 'background-position', 'background-size', 'border', 'border-top', 'border-right', 'border-bottom', 'border-left', 'border-width',
69*7d666900SdWiGhT											'border-top-width', 'border-right-width', 'border-left-width', 'border-bottom-width', 'bottom', 'border-spacing', 'column-gap', 'column-width',
70*7d666900SdWiGhT											'font-size', 'height', 'left', 'margin', 'margin-top', 'margin-right', 'margin-bottom', 'margin-left', 'max-height',
71*7d666900SdWiGhT											'max-width', 'min-height', 'min-width', 'outline', 'outline-width', 'padding', 'padding-top', 'padding-right',
72*7d666900SdWiGhT											'padding-bottom', 'padding-left', 'perspective', 'right', 'top', 'text-indent', 'letter-spacing', 'word-spacing', 'width');
73*7d666900SdWiGhT
74*7d666900SdWiGhT/**
75*7d666900SdWiGhT * Properties that allow <color> as value
76*7d666900SdWiGhT *
77*7d666900SdWiGhT * @todo CSS3 properties
78*7d666900SdWiGhT * @see compress_numbers();
79*7d666900SdWiGhT * @global array $data['csstidy']['color_values']
80*7d666900SdWiGhT * @version 1.0
81*7d666900SdWiGhT */
82*7d666900SdWiGhT$data['csstidy']['color_values'] = array();
83*7d666900SdWiGhT$data['csstidy']['color_values'][] = 'background-color';
84*7d666900SdWiGhT$data['csstidy']['color_values'][] = 'border-color';
85*7d666900SdWiGhT$data['csstidy']['color_values'][] = 'border-top-color';
86*7d666900SdWiGhT$data['csstidy']['color_values'][] = 'border-right-color';
87*7d666900SdWiGhT$data['csstidy']['color_values'][] = 'border-bottom-color';
88*7d666900SdWiGhT$data['csstidy']['color_values'][] = 'border-left-color';
89*7d666900SdWiGhT$data['csstidy']['color_values'][] = 'color';
90*7d666900SdWiGhT$data['csstidy']['color_values'][] = 'outline-color';
91*7d666900SdWiGhT$data['csstidy']['color_values'][] = 'column-rule-color';
92*7d666900SdWiGhT
93*7d666900SdWiGhT/**
94*7d666900SdWiGhT * Default values for the background properties
95*7d666900SdWiGhT *
96*7d666900SdWiGhT * @todo Possibly property names will change during CSS3 development
97*7d666900SdWiGhT * @global array $data['csstidy']['background_prop_default']
98*7d666900SdWiGhT * @see dissolve_short_bg()
99*7d666900SdWiGhT * @see merge_bg()
100*7d666900SdWiGhT * @version 1.0
101*7d666900SdWiGhT */
102*7d666900SdWiGhT$data['csstidy']['background_prop_default'] = array();
103*7d666900SdWiGhT$data['csstidy']['background_prop_default']['background-image'] = 'none';
104*7d666900SdWiGhT$data['csstidy']['background_prop_default']['background-size'] = 'auto';
105*7d666900SdWiGhT$data['csstidy']['background_prop_default']['background-repeat'] = 'repeat';
106*7d666900SdWiGhT$data['csstidy']['background_prop_default']['background-position'] = '0 0';
107*7d666900SdWiGhT$data['csstidy']['background_prop_default']['background-attachment'] = 'scroll';
108*7d666900SdWiGhT$data['csstidy']['background_prop_default']['background-clip'] = 'border';
109*7d666900SdWiGhT$data['csstidy']['background_prop_default']['background-origin'] = 'padding';
110*7d666900SdWiGhT$data['csstidy']['background_prop_default']['background-color'] = 'transparent';
111*7d666900SdWiGhT
112*7d666900SdWiGhT/**
113*7d666900SdWiGhT * Default values for the font properties
114*7d666900SdWiGhT *
115*7d666900SdWiGhT * @global array $data['csstidy']['font_prop_default']
116*7d666900SdWiGhT * @see merge_fonts()
117*7d666900SdWiGhT * @version 1.3
118*7d666900SdWiGhT */
119*7d666900SdWiGhT$data['csstidy']['font_prop_default'] = array();
120*7d666900SdWiGhT$data['csstidy']['font_prop_default']['font-style'] = 'normal';
121*7d666900SdWiGhT$data['csstidy']['font_prop_default']['font-variant'] = 'normal';
122*7d666900SdWiGhT$data['csstidy']['font_prop_default']['font-weight'] = 'normal';
123*7d666900SdWiGhT$data['csstidy']['font_prop_default']['font-size'] = '';
124*7d666900SdWiGhT$data['csstidy']['font_prop_default']['line-height'] = '';
125*7d666900SdWiGhT$data['csstidy']['font_prop_default']['font-family'] = '';
126*7d666900SdWiGhT
127*7d666900SdWiGhT/**
128*7d666900SdWiGhT * A list of non-W3C color names which get replaced by their hex-codes
129*7d666900SdWiGhT *
130*7d666900SdWiGhT * @global array $data['csstidy']['replace_colors']
131*7d666900SdWiGhT * @see cut_color()
132*7d666900SdWiGhT * @version 1.0
133*7d666900SdWiGhT */
134*7d666900SdWiGhT$data['csstidy']['replace_colors'] = array();
135*7d666900SdWiGhT$data['csstidy']['replace_colors']['aliceblue'] = '#f0f8ff';
136*7d666900SdWiGhT$data['csstidy']['replace_colors']['antiquewhite'] = '#faebd7';
137*7d666900SdWiGhT$data['csstidy']['replace_colors']['aquamarine'] = '#7fffd4';
138*7d666900SdWiGhT$data['csstidy']['replace_colors']['azure'] = '#f0ffff';
139*7d666900SdWiGhT$data['csstidy']['replace_colors']['beige'] = '#f5f5dc';
140*7d666900SdWiGhT$data['csstidy']['replace_colors']['bisque'] = '#ffe4c4';
141*7d666900SdWiGhT$data['csstidy']['replace_colors']['blanchedalmond'] = '#ffebcd';
142*7d666900SdWiGhT$data['csstidy']['replace_colors']['blueviolet'] = '#8a2be2';
143*7d666900SdWiGhT$data['csstidy']['replace_colors']['brown'] = '#a52a2a';
144*7d666900SdWiGhT$data['csstidy']['replace_colors']['burlywood'] = '#deb887';
145*7d666900SdWiGhT$data['csstidy']['replace_colors']['cadetblue'] = '#5f9ea0';
146*7d666900SdWiGhT$data['csstidy']['replace_colors']['chartreuse'] = '#7fff00';
147*7d666900SdWiGhT$data['csstidy']['replace_colors']['chocolate'] = '#d2691e';
148*7d666900SdWiGhT$data['csstidy']['replace_colors']['coral'] = '#ff7f50';
149*7d666900SdWiGhT$data['csstidy']['replace_colors']['cornflowerblue'] = '#6495ed';
150*7d666900SdWiGhT$data['csstidy']['replace_colors']['cornsilk'] = '#fff8dc';
151*7d666900SdWiGhT$data['csstidy']['replace_colors']['crimson'] = '#dc143c';
152*7d666900SdWiGhT$data['csstidy']['replace_colors']['cyan'] = '#00ffff';
153*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkblue'] = '#00008b';
154*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkcyan'] = '#008b8b';
155*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkgoldenrod'] = '#b8860b';
156*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkgray'] = '#a9a9a9';
157*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkgreen'] = '#006400';
158*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkkhaki'] = '#bdb76b';
159*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkmagenta'] = '#8b008b';
160*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkolivegreen'] = '#556b2f';
161*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkorange'] = '#ff8c00';
162*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkorchid'] = '#9932cc';
163*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkred'] = '#8b0000';
164*7d666900SdWiGhT$data['csstidy']['replace_colors']['darksalmon'] = '#e9967a';
165*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkseagreen'] = '#8fbc8f';
166*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkslateblue'] = '#483d8b';
167*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkslategray'] = '#2f4f4f';
168*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkturquoise'] = '#00ced1';
169*7d666900SdWiGhT$data['csstidy']['replace_colors']['darkviolet'] = '#9400d3';
170*7d666900SdWiGhT$data['csstidy']['replace_colors']['deeppink'] = '#ff1493';
171*7d666900SdWiGhT$data['csstidy']['replace_colors']['deepskyblue'] = '#00bfff';
172*7d666900SdWiGhT$data['csstidy']['replace_colors']['dimgray'] = '#696969';
173*7d666900SdWiGhT$data['csstidy']['replace_colors']['dodgerblue'] = '#1e90ff';
174*7d666900SdWiGhT$data['csstidy']['replace_colors']['feldspar'] = '#d19275';
175*7d666900SdWiGhT$data['csstidy']['replace_colors']['firebrick'] = '#b22222';
176*7d666900SdWiGhT$data['csstidy']['replace_colors']['floralwhite'] = '#fffaf0';
177*7d666900SdWiGhT$data['csstidy']['replace_colors']['forestgreen'] = '#228b22';
178*7d666900SdWiGhT$data['csstidy']['replace_colors']['gainsboro'] = '#dcdcdc';
179*7d666900SdWiGhT$data['csstidy']['replace_colors']['ghostwhite'] = '#f8f8ff';
180*7d666900SdWiGhT$data['csstidy']['replace_colors']['gold'] = '#ffd700';
181*7d666900SdWiGhT$data['csstidy']['replace_colors']['goldenrod'] = '#daa520';
182*7d666900SdWiGhT$data['csstidy']['replace_colors']['greenyellow'] = '#adff2f';
183*7d666900SdWiGhT$data['csstidy']['replace_colors']['honeydew'] = '#f0fff0';
184*7d666900SdWiGhT$data['csstidy']['replace_colors']['hotpink'] = '#ff69b4';
185*7d666900SdWiGhT$data['csstidy']['replace_colors']['indianred'] = '#cd5c5c';
186*7d666900SdWiGhT$data['csstidy']['replace_colors']['indigo'] = '#4b0082';
187*7d666900SdWiGhT$data['csstidy']['replace_colors']['ivory'] = '#fffff0';
188*7d666900SdWiGhT$data['csstidy']['replace_colors']['khaki'] = '#f0e68c';
189*7d666900SdWiGhT$data['csstidy']['replace_colors']['lavender'] = '#e6e6fa';
190*7d666900SdWiGhT$data['csstidy']['replace_colors']['lavenderblush'] = '#fff0f5';
191*7d666900SdWiGhT$data['csstidy']['replace_colors']['lawngreen'] = '#7cfc00';
192*7d666900SdWiGhT$data['csstidy']['replace_colors']['lemonchiffon'] = '#fffacd';
193*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightblue'] = '#add8e6';
194*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightcoral'] = '#f08080';
195*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightcyan'] = '#e0ffff';
196*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightgoldenrodyellow'] = '#fafad2';
197*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightgrey'] = '#d3d3d3';
198*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightgreen'] = '#90ee90';
199*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightpink'] = '#ffb6c1';
200*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightsalmon'] = '#ffa07a';
201*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightseagreen'] = '#20b2aa';
202*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightskyblue'] = '#87cefa';
203*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightslateblue'] = '#8470ff';
204*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightslategray'] = '#778899';
205*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightsteelblue'] = '#b0c4de';
206*7d666900SdWiGhT$data['csstidy']['replace_colors']['lightyellow'] = '#ffffe0';
207*7d666900SdWiGhT$data['csstidy']['replace_colors']['limegreen'] = '#32cd32';
208*7d666900SdWiGhT$data['csstidy']['replace_colors']['linen'] = '#faf0e6';
209*7d666900SdWiGhT$data['csstidy']['replace_colors']['magenta'] = '#ff00ff';
210*7d666900SdWiGhT$data['csstidy']['replace_colors']['mediumaquamarine'] = '#66cdaa';
211*7d666900SdWiGhT$data['csstidy']['replace_colors']['mediumblue'] = '#0000cd';
212*7d666900SdWiGhT$data['csstidy']['replace_colors']['mediumorchid'] = '#ba55d3';
213*7d666900SdWiGhT$data['csstidy']['replace_colors']['mediumpurple'] = '#9370d8';
214*7d666900SdWiGhT$data['csstidy']['replace_colors']['mediumseagreen'] = '#3cb371';
215*7d666900SdWiGhT$data['csstidy']['replace_colors']['mediumslateblue'] = '#7b68ee';
216*7d666900SdWiGhT$data['csstidy']['replace_colors']['mediumspringgreen'] = '#00fa9a';
217*7d666900SdWiGhT$data['csstidy']['replace_colors']['mediumturquoise'] = '#48d1cc';
218*7d666900SdWiGhT$data['csstidy']['replace_colors']['mediumvioletred'] = '#c71585';
219*7d666900SdWiGhT$data['csstidy']['replace_colors']['midnightblue'] = '#191970';
220*7d666900SdWiGhT$data['csstidy']['replace_colors']['mintcream'] = '#f5fffa';
221*7d666900SdWiGhT$data['csstidy']['replace_colors']['mistyrose'] = '#ffe4e1';
222*7d666900SdWiGhT$data['csstidy']['replace_colors']['moccasin'] = '#ffe4b5';
223*7d666900SdWiGhT$data['csstidy']['replace_colors']['navajowhite'] = '#ffdead';
224*7d666900SdWiGhT$data['csstidy']['replace_colors']['oldlace'] = '#fdf5e6';
225*7d666900SdWiGhT$data['csstidy']['replace_colors']['olivedrab'] = '#6b8e23';
226*7d666900SdWiGhT$data['csstidy']['replace_colors']['orangered'] = '#ff4500';
227*7d666900SdWiGhT$data['csstidy']['replace_colors']['orchid'] = '#da70d6';
228*7d666900SdWiGhT$data['csstidy']['replace_colors']['palegoldenrod'] = '#eee8aa';
229*7d666900SdWiGhT$data['csstidy']['replace_colors']['palegreen'] = '#98fb98';
230*7d666900SdWiGhT$data['csstidy']['replace_colors']['paleturquoise'] = '#afeeee';
231*7d666900SdWiGhT$data['csstidy']['replace_colors']['palevioletred'] = '#d87093';
232*7d666900SdWiGhT$data['csstidy']['replace_colors']['papayawhip'] = '#ffefd5';
233*7d666900SdWiGhT$data['csstidy']['replace_colors']['peachpuff'] = '#ffdab9';
234*7d666900SdWiGhT$data['csstidy']['replace_colors']['peru'] = '#cd853f';
235*7d666900SdWiGhT$data['csstidy']['replace_colors']['pink'] = '#ffc0cb';
236*7d666900SdWiGhT$data['csstidy']['replace_colors']['plum'] = '#dda0dd';
237*7d666900SdWiGhT$data['csstidy']['replace_colors']['powderblue'] = '#b0e0e6';
238*7d666900SdWiGhT$data['csstidy']['replace_colors']['rosybrown'] = '#bc8f8f';
239*7d666900SdWiGhT$data['csstidy']['replace_colors']['royalblue'] = '#4169e1';
240*7d666900SdWiGhT$data['csstidy']['replace_colors']['saddlebrown'] = '#8b4513';
241*7d666900SdWiGhT$data['csstidy']['replace_colors']['salmon'] = '#fa8072';
242*7d666900SdWiGhT$data['csstidy']['replace_colors']['sandybrown'] = '#f4a460';
243*7d666900SdWiGhT$data['csstidy']['replace_colors']['seagreen'] = '#2e8b57';
244*7d666900SdWiGhT$data['csstidy']['replace_colors']['seashell'] = '#fff5ee';
245*7d666900SdWiGhT$data['csstidy']['replace_colors']['sienna'] = '#a0522d';
246*7d666900SdWiGhT$data['csstidy']['replace_colors']['skyblue'] = '#87ceeb';
247*7d666900SdWiGhT$data['csstidy']['replace_colors']['slateblue'] = '#6a5acd';
248*7d666900SdWiGhT$data['csstidy']['replace_colors']['slategray'] = '#708090';
249*7d666900SdWiGhT$data['csstidy']['replace_colors']['snow'] = '#fffafa';
250*7d666900SdWiGhT$data['csstidy']['replace_colors']['springgreen'] = '#00ff7f';
251*7d666900SdWiGhT$data['csstidy']['replace_colors']['steelblue'] = '#4682b4';
252*7d666900SdWiGhT$data['csstidy']['replace_colors']['tan'] = '#d2b48c';
253*7d666900SdWiGhT$data['csstidy']['replace_colors']['thistle'] = '#d8bfd8';
254*7d666900SdWiGhT$data['csstidy']['replace_colors']['tomato'] = '#ff6347';
255*7d666900SdWiGhT$data['csstidy']['replace_colors']['turquoise'] = '#40e0d0';
256*7d666900SdWiGhT$data['csstidy']['replace_colors']['violet'] = '#ee82ee';
257*7d666900SdWiGhT$data['csstidy']['replace_colors']['violetred'] = '#d02090';
258*7d666900SdWiGhT$data['csstidy']['replace_colors']['wheat'] = '#f5deb3';
259*7d666900SdWiGhT$data['csstidy']['replace_colors']['whitesmoke'] = '#f5f5f5';
260*7d666900SdWiGhT$data['csstidy']['replace_colors']['yellowgreen'] = '#9acd32';
261*7d666900SdWiGhT
262*7d666900SdWiGhT/**
263*7d666900SdWiGhT * A list of all shorthand properties that are devided into four properties and/or have four subvalues
264*7d666900SdWiGhT *
265*7d666900SdWiGhT * @global array $data['csstidy']['shorthands']
266*7d666900SdWiGhT * @todo Are there new ones in CSS3?
267*7d666900SdWiGhT * @see dissolve_4value_shorthands()
268*7d666900SdWiGhT * @see merge_4value_shorthands()
269*7d666900SdWiGhT * @version 1.0
270*7d666900SdWiGhT */
271*7d666900SdWiGhT$data['csstidy']['shorthands'] = array();
272*7d666900SdWiGhT$data['csstidy']['shorthands']['border-color'] = array('border-top-color','border-right-color','border-bottom-color','border-left-color');
273*7d666900SdWiGhT$data['csstidy']['shorthands']['border-style'] = array('border-top-style','border-right-style','border-bottom-style','border-left-style');
274*7d666900SdWiGhT$data['csstidy']['shorthands']['border-width'] = array('border-top-width','border-right-width','border-bottom-width','border-left-width');
275*7d666900SdWiGhT$data['csstidy']['shorthands']['margin'] = array('margin-top','margin-right','margin-bottom','margin-left');
276*7d666900SdWiGhT$data['csstidy']['shorthands']['padding'] = array('padding-top','padding-right','padding-bottom','padding-left');
277*7d666900SdWiGhT
278*7d666900SdWiGhT$data['csstidy']['radius_shorthands']['border-radius'] = array('border-top-left-radius','border-top-right-radius','border-bottom-right-radius','border-bottom-left-radius');
279*7d666900SdWiGhT$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');
280*7d666900SdWiGhT$data['csstidy']['radius_shorthands']['-moz-border-radius'] = array('-moz-border-radius-topleft','-moz-border-radius-topright','-moz-border-radius-bottomright','-moz-border-radius-bottomleft');
281*7d666900SdWiGhT
282*7d666900SdWiGhT/**
283*7d666900SdWiGhT * All CSS Properties. Needed for csstidy::property_is_next()
284*7d666900SdWiGhT *
285*7d666900SdWiGhT * @global array $data['csstidy']['all_properties']
286*7d666900SdWiGhT * @version 1.1
287*7d666900SdWiGhT * @see csstidy::property_is_next()
288*7d666900SdWiGhT */
289*7d666900SdWiGhT$data['csstidy']['all_properties']['alignment-adjust'] = 'CSS3.0';
290*7d666900SdWiGhT$data['csstidy']['all_properties']['alignment-baseline'] = 'CSS3.0';
291*7d666900SdWiGhT$data['csstidy']['all_properties']['animation'] = 'CSS3.0';
292*7d666900SdWiGhT$data['csstidy']['all_properties']['animation-delay'] = 'CSS3.0';
293*7d666900SdWiGhT$data['csstidy']['all_properties']['animation-direction'] = 'CSS3.0';
294*7d666900SdWiGhT$data['csstidy']['all_properties']['animation-duration'] = 'CSS3.0';
295*7d666900SdWiGhT$data['csstidy']['all_properties']['animation-iteration-count'] = 'CSS3.0';
296*7d666900SdWiGhT$data['csstidy']['all_properties']['animation-name'] = 'CSS3.0';
297*7d666900SdWiGhT$data['csstidy']['all_properties']['animation-play-state'] = 'CSS3.0';
298*7d666900SdWiGhT$data['csstidy']['all_properties']['animation-timing-function'] = 'CSS3.0';
299*7d666900SdWiGhT$data['csstidy']['all_properties']['appearance'] = 'CSS3.0';
300*7d666900SdWiGhT$data['csstidy']['all_properties']['azimuth'] = 'CSS2.0,CSS2.1,CSS3.0';
301*7d666900SdWiGhT$data['csstidy']['all_properties']['backface-visibility'] = 'CSS3.0';
302*7d666900SdWiGhT$data['csstidy']['all_properties']['background'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
303*7d666900SdWiGhT$data['csstidy']['all_properties']['background-attachment'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
304*7d666900SdWiGhT$data['csstidy']['all_properties']['background-clip'] = 'CSS3.0';
305*7d666900SdWiGhT$data['csstidy']['all_properties']['background-color'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
306*7d666900SdWiGhT$data['csstidy']['all_properties']['background-image'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
307*7d666900SdWiGhT$data['csstidy']['all_properties']['background-origin'] = 'CSS3.0';
308*7d666900SdWiGhT$data['csstidy']['all_properties']['background-position'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
309*7d666900SdWiGhT$data['csstidy']['all_properties']['background-repeat'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
310*7d666900SdWiGhT$data['csstidy']['all_properties']['background-size'] = 'CSS3.0';
311*7d666900SdWiGhT$data['csstidy']['all_properties']['baseline-shift'] = 'CSS3.0';
312*7d666900SdWiGhT$data['csstidy']['all_properties']['binding'] = 'CSS3.0';
313*7d666900SdWiGhT$data['csstidy']['all_properties']['bleed'] = 'CSS3.0';
314*7d666900SdWiGhT$data['csstidy']['all_properties']['bookmark-label'] = 'CSS3.0';
315*7d666900SdWiGhT$data['csstidy']['all_properties']['bookmark-level'] = 'CSS3.0';
316*7d666900SdWiGhT$data['csstidy']['all_properties']['bookmark-state'] = 'CSS3.0';
317*7d666900SdWiGhT$data['csstidy']['all_properties']['bookmark-target'] = 'CSS3.0';
318*7d666900SdWiGhT$data['csstidy']['all_properties']['border'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
319*7d666900SdWiGhT$data['csstidy']['all_properties']['border-bottom'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
320*7d666900SdWiGhT$data['csstidy']['all_properties']['border-bottom-color'] = 'CSS2.0,CSS2.1,CSS3.0';
321*7d666900SdWiGhT$data['csstidy']['all_properties']['border-bottom-left-radius'] = 'CSS3.0';
322*7d666900SdWiGhT$data['csstidy']['all_properties']['border-bottom-right-radius'] = 'CSS3.0';
323*7d666900SdWiGhT$data['csstidy']['all_properties']['border-bottom-style'] = 'CSS2.0,CSS2.1,CSS3.0';
324*7d666900SdWiGhT$data['csstidy']['all_properties']['border-bottom-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
325*7d666900SdWiGhT$data['csstidy']['all_properties']['border-collapse'] = 'CSS2.0,CSS2.1,CSS3.0';
326*7d666900SdWiGhT$data['csstidy']['all_properties']['border-color'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
327*7d666900SdWiGhT$data['csstidy']['all_properties']['border-image'] = 'CSS3.0';
328*7d666900SdWiGhT$data['csstidy']['all_properties']['border-image-outset'] = 'CSS3.0';
329*7d666900SdWiGhT$data['csstidy']['all_properties']['border-image-repeat'] = 'CSS3.0';
330*7d666900SdWiGhT$data['csstidy']['all_properties']['border-image-slice'] = 'CSS3.0';
331*7d666900SdWiGhT$data['csstidy']['all_properties']['border-image-source'] = 'CSS3.0';
332*7d666900SdWiGhT$data['csstidy']['all_properties']['border-image-width'] = 'CSS3.0';
333*7d666900SdWiGhT$data['csstidy']['all_properties']['border-left'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
334*7d666900SdWiGhT$data['csstidy']['all_properties']['border-left-color'] = 'CSS2.0,CSS2.1,CSS3.0';
335*7d666900SdWiGhT$data['csstidy']['all_properties']['border-left-style'] = 'CSS2.0,CSS2.1,CSS3.0';
336*7d666900SdWiGhT$data['csstidy']['all_properties']['border-left-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
337*7d666900SdWiGhT$data['csstidy']['all_properties']['border-radius'] = 'CSS3.0';
338*7d666900SdWiGhT$data['csstidy']['all_properties']['border-right'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
339*7d666900SdWiGhT$data['csstidy']['all_properties']['border-right-color'] = 'CSS2.0,CSS2.1,CSS3.0';
340*7d666900SdWiGhT$data['csstidy']['all_properties']['border-right-style'] = 'CSS2.0,CSS2.1,CSS3.0';
341*7d666900SdWiGhT$data['csstidy']['all_properties']['border-right-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
342*7d666900SdWiGhT$data['csstidy']['all_properties']['border-spacing'] = 'CSS2.0,CSS2.1,CSS3.0';
343*7d666900SdWiGhT$data['csstidy']['all_properties']['border-style'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
344*7d666900SdWiGhT$data['csstidy']['all_properties']['border-top'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
345*7d666900SdWiGhT$data['csstidy']['all_properties']['border-top-color'] = 'CSS2.0,CSS2.1,CSS3.0';
346*7d666900SdWiGhT$data['csstidy']['all_properties']['border-top-left-radius'] = 'CSS3.0';
347*7d666900SdWiGhT$data['csstidy']['all_properties']['border-top-right-radius'] = 'CSS3.0';
348*7d666900SdWiGhT$data['csstidy']['all_properties']['border-top-style'] = 'CSS2.0,CSS2.1,CSS3.0';
349*7d666900SdWiGhT$data['csstidy']['all_properties']['border-top-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
350*7d666900SdWiGhT$data['csstidy']['all_properties']['border-width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
351*7d666900SdWiGhT$data['csstidy']['all_properties']['bottom'] = 'CSS2.0,CSS2.1,CSS3.0';
352*7d666900SdWiGhT$data['csstidy']['all_properties']['box-decoration-break'] = 'CSS3.0';
353*7d666900SdWiGhT$data['csstidy']['all_properties']['box-shadow'] = 'CSS3.0';
354*7d666900SdWiGhT$data['csstidy']['all_properties']['box-sizing'] = 'CSS3.0';
355*7d666900SdWiGhT$data['csstidy']['all_properties']['break-after'] = 'CSS3.0';
356*7d666900SdWiGhT$data['csstidy']['all_properties']['break-before'] = 'CSS3.0';
357*7d666900SdWiGhT$data['csstidy']['all_properties']['break-inside'] = 'CSS3.0';
358*7d666900SdWiGhT$data['csstidy']['all_properties']['caption-side'] = 'CSS2.0,CSS2.1,CSS3.0';
359*7d666900SdWiGhT$data['csstidy']['all_properties']['clear'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
360*7d666900SdWiGhT$data['csstidy']['all_properties']['clip'] = 'CSS2.0,CSS2.1,CSS3.0';
361*7d666900SdWiGhT$data['csstidy']['all_properties']['color'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
362*7d666900SdWiGhT$data['csstidy']['all_properties']['color-profile'] = 'CSS3.0';
363*7d666900SdWiGhT$data['csstidy']['all_properties']['column-count'] = 'CSS3.0';
364*7d666900SdWiGhT$data['csstidy']['all_properties']['column-fill'] = 'CSS3.0';
365*7d666900SdWiGhT$data['csstidy']['all_properties']['column-gap'] = 'CSS3.0';
366*7d666900SdWiGhT$data['csstidy']['all_properties']['column-rule'] = 'CSS3.0';
367*7d666900SdWiGhT$data['csstidy']['all_properties']['column-rule-color'] = 'CSS3.0';
368*7d666900SdWiGhT$data['csstidy']['all_properties']['column-rule-style'] = 'CSS3.0';
369*7d666900SdWiGhT$data['csstidy']['all_properties']['column-rule-width'] = 'CSS3.0';
370*7d666900SdWiGhT$data['csstidy']['all_properties']['column-span'] = 'CSS3.0';
371*7d666900SdWiGhT$data['csstidy']['all_properties']['column-width'] = 'CSS3.0';
372*7d666900SdWiGhT$data['csstidy']['all_properties']['columns'] = 'CSS3.0';
373*7d666900SdWiGhT$data['csstidy']['all_properties']['content'] = 'CSS2.0,CSS2.1,CSS3.0';
374*7d666900SdWiGhT$data['csstidy']['all_properties']['counter-increment'] = 'CSS2.0,CSS2.1,CSS3.0';
375*7d666900SdWiGhT$data['csstidy']['all_properties']['counter-reset'] = 'CSS2.0,CSS2.1,CSS3.0';
376*7d666900SdWiGhT$data['csstidy']['all_properties']['crop'] = 'CSS3.0';
377*7d666900SdWiGhT$data['csstidy']['all_properties']['cue'] = 'CSS2.0,CSS2.1,CSS3.0';
378*7d666900SdWiGhT$data['csstidy']['all_properties']['cue-after'] = 'CSS2.0,CSS2.1,CSS3.0';
379*7d666900SdWiGhT$data['csstidy']['all_properties']['cue-before'] = 'CSS2.0,CSS2.1,CSS3.0';
380*7d666900SdWiGhT$data['csstidy']['all_properties']['cursor'] = 'CSS2.0,CSS2.1,CSS3.0';
381*7d666900SdWiGhT$data['csstidy']['all_properties']['direction'] = 'CSS2.0,CSS2.1,CSS3.0';
382*7d666900SdWiGhT$data['csstidy']['all_properties']['display'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
383*7d666900SdWiGhT$data['csstidy']['all_properties']['dominant-baseline'] = 'CSS3.0';
384*7d666900SdWiGhT$data['csstidy']['all_properties']['drop-initial-after-adjust'] = 'CSS3.0';
385*7d666900SdWiGhT$data['csstidy']['all_properties']['drop-initial-after-align'] = 'CSS3.0';
386*7d666900SdWiGhT$data['csstidy']['all_properties']['drop-initial-before-adjust'] = 'CSS3.0';
387*7d666900SdWiGhT$data['csstidy']['all_properties']['drop-initial-before-align'] = 'CSS3.0';
388*7d666900SdWiGhT$data['csstidy']['all_properties']['drop-initial-size'] = 'CSS3.0';
389*7d666900SdWiGhT$data['csstidy']['all_properties']['drop-initial-value'] = 'CSS3.0';
390*7d666900SdWiGhT$data['csstidy']['all_properties']['elevation'] = 'CSS2.0,CSS2.1,CSS3.0';
391*7d666900SdWiGhT$data['csstidy']['all_properties']['empty-cells'] = 'CSS2.0,CSS2.1,CSS3.0';
392*7d666900SdWiGhT$data['csstidy']['all_properties']['fit'] = 'CSS3.0';
393*7d666900SdWiGhT$data['csstidy']['all_properties']['fit-position'] = 'CSS3.0';
394*7d666900SdWiGhT$data['csstidy']['all_properties']['flex-align'] = 'CSS3.0';
395*7d666900SdWiGhT$data['csstidy']['all_properties']['flex-flow'] = 'CSS3.0';
396*7d666900SdWiGhT$data['csstidy']['all_properties']['flex-line-pack'] = 'CSS3.0';
397*7d666900SdWiGhT$data['csstidy']['all_properties']['flex-order'] = 'CSS3.0';
398*7d666900SdWiGhT$data['csstidy']['all_properties']['flex-pack'] = 'CSS3.0';
399*7d666900SdWiGhT$data['csstidy']['all_properties']['float'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
400*7d666900SdWiGhT$data['csstidy']['all_properties']['float-offset'] = 'CSS3.0';
401*7d666900SdWiGhT$data['csstidy']['all_properties']['font'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
402*7d666900SdWiGhT$data['csstidy']['all_properties']['font-family'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
403*7d666900SdWiGhT$data['csstidy']['all_properties']['font-size'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
404*7d666900SdWiGhT$data['csstidy']['all_properties']['font-size-adjust'] = 'CSS2.0,CSS3.0';
405*7d666900SdWiGhT$data['csstidy']['all_properties']['font-stretch'] = 'CSS2.0,CSS3.0';
406*7d666900SdWiGhT$data['csstidy']['all_properties']['font-style'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
407*7d666900SdWiGhT$data['csstidy']['all_properties']['font-variant'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
408*7d666900SdWiGhT$data['csstidy']['all_properties']['font-weight'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
409*7d666900SdWiGhT$data['csstidy']['all_properties']['grid-columns'] = 'CSS3.0';
410*7d666900SdWiGhT$data['csstidy']['all_properties']['grid-rows'] = 'CSS3.0';
411*7d666900SdWiGhT$data['csstidy']['all_properties']['hanging-punctuation'] = 'CSS3.0';
412*7d666900SdWiGhT$data['csstidy']['all_properties']['height'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
413*7d666900SdWiGhT$data['csstidy']['all_properties']['hyphenate-after'] = 'CSS3.0';
414*7d666900SdWiGhT$data['csstidy']['all_properties']['hyphenate-before'] = 'CSS3.0';
415*7d666900SdWiGhT$data['csstidy']['all_properties']['hyphenate-character'] = 'CSS3.0';
416*7d666900SdWiGhT$data['csstidy']['all_properties']['hyphenate-lines'] = 'CSS3.0';
417*7d666900SdWiGhT$data['csstidy']['all_properties']['hyphenate-resource'] = 'CSS3.0';
418*7d666900SdWiGhT$data['csstidy']['all_properties']['hyphens'] = 'CSS3.0';
419*7d666900SdWiGhT$data['csstidy']['all_properties']['icon'] = 'CSS3.0';
420*7d666900SdWiGhT$data['csstidy']['all_properties']['image-orientation'] = 'CSS3.0';
421*7d666900SdWiGhT$data['csstidy']['all_properties']['image-rendering'] = 'CSS3.0';
422*7d666900SdWiGhT$data['csstidy']['all_properties']['image-resolution'] = 'CSS3.0';
423*7d666900SdWiGhT$data['csstidy']['all_properties']['inline-box-align'] = 'CSS3.0';
424*7d666900SdWiGhT$data['csstidy']['all_properties']['left'] = 'CSS2.0,CSS2.1,CSS3.0';
425*7d666900SdWiGhT$data['csstidy']['all_properties']['letter-spacing'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
426*7d666900SdWiGhT$data['csstidy']['all_properties']['line-break'] = 'CSS3.0';
427*7d666900SdWiGhT$data['csstidy']['all_properties']['line-height'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
428*7d666900SdWiGhT$data['csstidy']['all_properties']['line-stacking'] = 'CSS3.0';
429*7d666900SdWiGhT$data['csstidy']['all_properties']['line-stacking-ruby'] = 'CSS3.0';
430*7d666900SdWiGhT$data['csstidy']['all_properties']['line-stacking-shift'] = 'CSS3.0';
431*7d666900SdWiGhT$data['csstidy']['all_properties']['line-stacking-strategy'] = 'CSS3.0';
432*7d666900SdWiGhT$data['csstidy']['all_properties']['list-style'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
433*7d666900SdWiGhT$data['csstidy']['all_properties']['list-style-image'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
434*7d666900SdWiGhT$data['csstidy']['all_properties']['list-style-position'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
435*7d666900SdWiGhT$data['csstidy']['all_properties']['list-style-type'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
436*7d666900SdWiGhT$data['csstidy']['all_properties']['margin'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
437*7d666900SdWiGhT$data['csstidy']['all_properties']['margin-bottom'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
438*7d666900SdWiGhT$data['csstidy']['all_properties']['margin-left'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
439*7d666900SdWiGhT$data['csstidy']['all_properties']['margin-right'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
440*7d666900SdWiGhT$data['csstidy']['all_properties']['margin-top'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
441*7d666900SdWiGhT$data['csstidy']['all_properties']['marker-offset'] = 'CSS2.0,CSS3.0';
442*7d666900SdWiGhT$data['csstidy']['all_properties']['marks'] = 'CSS2.0,CSS3.0';
443*7d666900SdWiGhT$data['csstidy']['all_properties']['marquee-direction'] = 'CSS3.0';
444*7d666900SdWiGhT$data['csstidy']['all_properties']['marquee-loop'] = 'CSS3.0';
445*7d666900SdWiGhT$data['csstidy']['all_properties']['marquee-play-count'] = 'CSS3.0';
446*7d666900SdWiGhT$data['csstidy']['all_properties']['marquee-speed'] = 'CSS3.0';
447*7d666900SdWiGhT$data['csstidy']['all_properties']['marquee-style'] = 'CSS3.0';
448*7d666900SdWiGhT$data['csstidy']['all_properties']['max-height'] = 'CSS2.0,CSS2.1,CSS3.0';
449*7d666900SdWiGhT$data['csstidy']['all_properties']['max-width'] = 'CSS2.0,CSS2.1,CSS3.0';
450*7d666900SdWiGhT$data['csstidy']['all_properties']['min-height'] = 'CSS2.0,CSS2.1,CSS3.0';
451*7d666900SdWiGhT$data['csstidy']['all_properties']['min-width'] = 'CSS2.0,CSS2.1,CSS3.0';
452*7d666900SdWiGhT$data['csstidy']['all_properties']['move-to'] = 'CSS3.0';
453*7d666900SdWiGhT$data['csstidy']['all_properties']['nav-down'] = 'CSS3.0';
454*7d666900SdWiGhT$data['csstidy']['all_properties']['nav-index'] = 'CSS3.0';
455*7d666900SdWiGhT$data['csstidy']['all_properties']['nav-left'] = 'CSS3.0';
456*7d666900SdWiGhT$data['csstidy']['all_properties']['nav-right'] = 'CSS3.0';
457*7d666900SdWiGhT$data['csstidy']['all_properties']['nav-up'] = 'CSS3.0';
458*7d666900SdWiGhT$data['csstidy']['all_properties']['opacity'] = 'CSS3.0';
459*7d666900SdWiGhT$data['csstidy']['all_properties']['orphans'] = 'CSS2.0,CSS2.1,CSS3.0';
460*7d666900SdWiGhT$data['csstidy']['all_properties']['outline'] = 'CSS2.0,CSS2.1,CSS3.0';
461*7d666900SdWiGhT$data['csstidy']['all_properties']['outline-color'] = 'CSS2.0,CSS2.1,CSS3.0';
462*7d666900SdWiGhT$data['csstidy']['all_properties']['outline-offset'] = 'CSS3.0';
463*7d666900SdWiGhT$data['csstidy']['all_properties']['outline-style'] = 'CSS2.0,CSS2.1,CSS3.0';
464*7d666900SdWiGhT$data['csstidy']['all_properties']['outline-width'] = 'CSS2.0,CSS2.1,CSS3.0';
465*7d666900SdWiGhT$data['csstidy']['all_properties']['overflow'] = 'CSS2.0,CSS2.1,CSS3.0';
466*7d666900SdWiGhT$data['csstidy']['all_properties']['overflow-style'] = 'CSS3.0';
467*7d666900SdWiGhT$data['csstidy']['all_properties']['overflow-wrap'] = 'CSS3.0';
468*7d666900SdWiGhT$data['csstidy']['all_properties']['overflow-x'] = 'CSS3.0';
469*7d666900SdWiGhT$data['csstidy']['all_properties']['overflow-y'] = 'CSS3.0';
470*7d666900SdWiGhT$data['csstidy']['all_properties']['padding'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
471*7d666900SdWiGhT$data['csstidy']['all_properties']['padding-bottom'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
472*7d666900SdWiGhT$data['csstidy']['all_properties']['padding-left'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
473*7d666900SdWiGhT$data['csstidy']['all_properties']['padding-right'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
474*7d666900SdWiGhT$data['csstidy']['all_properties']['padding-top'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
475*7d666900SdWiGhT$data['csstidy']['all_properties']['page'] = 'CSS2.0,CSS3.0';
476*7d666900SdWiGhT$data['csstidy']['all_properties']['page-break-after'] = 'CSS2.0,CSS2.1,CSS3.0';
477*7d666900SdWiGhT$data['csstidy']['all_properties']['page-break-before'] = 'CSS2.0,CSS2.1,CSS3.0';
478*7d666900SdWiGhT$data['csstidy']['all_properties']['page-break-inside'] = 'CSS2.0,CSS2.1,CSS3.0';
479*7d666900SdWiGhT$data['csstidy']['all_properties']['page-policy'] = 'CSS3.0';
480*7d666900SdWiGhT$data['csstidy']['all_properties']['pause'] = 'CSS2.0,CSS2.1,CSS3.0';
481*7d666900SdWiGhT$data['csstidy']['all_properties']['pause-after'] = 'CSS2.0,CSS2.1,CSS3.0';
482*7d666900SdWiGhT$data['csstidy']['all_properties']['pause-before'] = 'CSS2.0,CSS2.1,CSS3.0';
483*7d666900SdWiGhT$data['csstidy']['all_properties']['perspective'] = 'CSS3.0';
484*7d666900SdWiGhT$data['csstidy']['all_properties']['perspective-origin'] = 'CSS3.0';
485*7d666900SdWiGhT$data['csstidy']['all_properties']['phonemes'] = 'CSS3.0';
486*7d666900SdWiGhT$data['csstidy']['all_properties']['pitch'] = 'CSS2.0,CSS2.1,CSS3.0';
487*7d666900SdWiGhT$data['csstidy']['all_properties']['pitch-range'] = 'CSS2.0,CSS2.1,CSS3.0';
488*7d666900SdWiGhT$data['csstidy']['all_properties']['play-during'] = 'CSS2.0,CSS2.1,CSS3.0';
489*7d666900SdWiGhT$data['csstidy']['all_properties']['position'] = 'CSS2.0,CSS2.1,CSS3.0';
490*7d666900SdWiGhT$data['csstidy']['all_properties']['presentation-level'] = 'CSS3.0';
491*7d666900SdWiGhT$data['csstidy']['all_properties']['punctuation-trim'] = 'CSS3.0';
492*7d666900SdWiGhT$data['csstidy']['all_properties']['quotes'] = 'CSS2.0,CSS2.1,CSS3.0';
493*7d666900SdWiGhT$data['csstidy']['all_properties']['rendering-intent'] = 'CSS3.0';
494*7d666900SdWiGhT$data['csstidy']['all_properties']['resize'] = 'CSS3.0';
495*7d666900SdWiGhT$data['csstidy']['all_properties']['rest'] = 'CSS3.0';
496*7d666900SdWiGhT$data['csstidy']['all_properties']['rest-after'] = 'CSS3.0';
497*7d666900SdWiGhT$data['csstidy']['all_properties']['rest-before'] = 'CSS3.0';
498*7d666900SdWiGhT$data['csstidy']['all_properties']['richness'] = 'CSS2.0,CSS2.1,CSS3.0';
499*7d666900SdWiGhT$data['csstidy']['all_properties']['right'] = 'CSS2.0,CSS2.1,CSS3.0';
500*7d666900SdWiGhT$data['csstidy']['all_properties']['rotation'] = 'CSS3.0';
501*7d666900SdWiGhT$data['csstidy']['all_properties']['rotation-point'] = 'CSS3.0';
502*7d666900SdWiGhT$data['csstidy']['all_properties']['ruby-align'] = 'CSS3.0';
503*7d666900SdWiGhT$data['csstidy']['all_properties']['ruby-overhang'] = 'CSS3.0';
504*7d666900SdWiGhT$data['csstidy']['all_properties']['ruby-position'] = 'CSS3.0';
505*7d666900SdWiGhT$data['csstidy']['all_properties']['ruby-span'] = 'CSS3.0';
506*7d666900SdWiGhT$data['csstidy']['all_properties']['size'] = 'CSS2.0,CSS3.0';
507*7d666900SdWiGhT$data['csstidy']['all_properties']['speak'] = 'CSS2.0,CSS2.1,CSS3.0';
508*7d666900SdWiGhT$data['csstidy']['all_properties']['speak-header'] = 'CSS2.0,CSS2.1,CSS3.0';
509*7d666900SdWiGhT$data['csstidy']['all_properties']['speak-numeral'] = 'CSS2.0,CSS2.1,CSS3.0';
510*7d666900SdWiGhT$data['csstidy']['all_properties']['speak-punctuation'] = 'CSS2.0,CSS2.1,CSS3.0';
511*7d666900SdWiGhT$data['csstidy']['all_properties']['speech-rate'] = 'CSS2.0,CSS2.1,CSS3.0';
512*7d666900SdWiGhT$data['csstidy']['all_properties']['src'] = 'CSS3.0';
513*7d666900SdWiGhT$data['csstidy']['all_properties']['stress'] = 'CSS2.0,CSS2.1,CSS3.0';
514*7d666900SdWiGhT$data['csstidy']['all_properties']['string-set'] = 'CSS3.0';
515*7d666900SdWiGhT$data['csstidy']['all_properties']['tab-size'] = 'CSS3.0';
516*7d666900SdWiGhT$data['csstidy']['all_properties']['table-layout'] = 'CSS2.0,CSS2.1,CSS3.0';
517*7d666900SdWiGhT$data['csstidy']['all_properties']['target'] = 'CSS3.0';
518*7d666900SdWiGhT$data['csstidy']['all_properties']['target-name'] = 'CSS3.0';
519*7d666900SdWiGhT$data['csstidy']['all_properties']['target-new'] = 'CSS3.0';
520*7d666900SdWiGhT$data['csstidy']['all_properties']['target-position'] = 'CSS3.0';
521*7d666900SdWiGhT$data['csstidy']['all_properties']['text-align'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
522*7d666900SdWiGhT$data['csstidy']['all_properties']['text-align-last'] = 'CSS3.0';
523*7d666900SdWiGhT$data['csstidy']['all_properties']['text-decoration'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
524*7d666900SdWiGhT$data['csstidy']['all_properties']['text-decoration-color'] = 'CSS3.0';
525*7d666900SdWiGhT$data['csstidy']['all_properties']['text-decoration-line'] = 'CSS3.0';
526*7d666900SdWiGhT$data['csstidy']['all_properties']['text-decoration-skip'] = 'CSS3.0';
527*7d666900SdWiGhT$data['csstidy']['all_properties']['text-decoration-style'] = 'CSS3.0';
528*7d666900SdWiGhT$data['csstidy']['all_properties']['text-emphasis'] = 'CSS3.0';
529*7d666900SdWiGhT$data['csstidy']['all_properties']['text-emphasis-color'] = 'CSS3.0';
530*7d666900SdWiGhT$data['csstidy']['all_properties']['text-emphasis-position'] = 'CSS3.0';
531*7d666900SdWiGhT$data['csstidy']['all_properties']['text-emphasis-style'] = 'CSS3.0';
532*7d666900SdWiGhT$data['csstidy']['all_properties']['text-height'] = 'CSS3.0';
533*7d666900SdWiGhT$data['csstidy']['all_properties']['text-indent'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
534*7d666900SdWiGhT$data['csstidy']['all_properties']['text-justify'] = 'CSS3.0';
535*7d666900SdWiGhT$data['csstidy']['all_properties']['text-outline'] = 'CSS3.0';
536*7d666900SdWiGhT$data['csstidy']['all_properties']['text-shadow'] = 'CSS2.0,CSS3.0';
537*7d666900SdWiGhT$data['csstidy']['all_properties']['text-space-collapse'] = 'CSS3.0';
538*7d666900SdWiGhT$data['csstidy']['all_properties']['text-transform'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
539*7d666900SdWiGhT$data['csstidy']['all_properties']['text-underline-position'] = 'CSS3.0';
540*7d666900SdWiGhT$data['csstidy']['all_properties']['text-wrap'] = 'CSS3.0';
541*7d666900SdWiGhT$data['csstidy']['all_properties']['top'] = 'CSS2.0,CSS2.1,CSS3.0';
542*7d666900SdWiGhT$data['csstidy']['all_properties']['transform'] = 'CSS3.0';
543*7d666900SdWiGhT$data['csstidy']['all_properties']['transform-origin'] = 'CSS3.0';
544*7d666900SdWiGhT$data['csstidy']['all_properties']['transform-style'] = 'CSS3.0';
545*7d666900SdWiGhT$data['csstidy']['all_properties']['transition'] = 'CSS3.0';
546*7d666900SdWiGhT$data['csstidy']['all_properties']['transition-delay'] = 'CSS3.0';
547*7d666900SdWiGhT$data['csstidy']['all_properties']['transition-duration'] = 'CSS3.0';
548*7d666900SdWiGhT$data['csstidy']['all_properties']['transition-property'] = 'CSS3.0';
549*7d666900SdWiGhT$data['csstidy']['all_properties']['transition-timing-function'] = 'CSS3.0';
550*7d666900SdWiGhT$data['csstidy']['all_properties']['unicode-bidi'] = 'CSS2.0,CSS2.1,CSS3.0';
551*7d666900SdWiGhT$data['csstidy']['all_properties']['vertical-align'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
552*7d666900SdWiGhT$data['csstidy']['all_properties']['visibility'] = 'CSS2.0,CSS2.1,CSS3.0';
553*7d666900SdWiGhT$data['csstidy']['all_properties']['voice-balance'] = 'CSS3.0';
554*7d666900SdWiGhT$data['csstidy']['all_properties']['voice-duration'] = 'CSS3.0';
555*7d666900SdWiGhT$data['csstidy']['all_properties']['voice-family'] = 'CSS2.0,CSS2.1,CSS3.0';
556*7d666900SdWiGhT$data['csstidy']['all_properties']['voice-pitch'] = 'CSS3.0';
557*7d666900SdWiGhT$data['csstidy']['all_properties']['voice-pitch-range'] = 'CSS3.0';
558*7d666900SdWiGhT$data['csstidy']['all_properties']['voice-rate'] = 'CSS3.0';
559*7d666900SdWiGhT$data['csstidy']['all_properties']['voice-stress'] = 'CSS3.0';
560*7d666900SdWiGhT$data['csstidy']['all_properties']['voice-volume'] = 'CSS3.0';
561*7d666900SdWiGhT$data['csstidy']['all_properties']['volume'] = 'CSS2.0,CSS2.1,CSS3.0';
562*7d666900SdWiGhT$data['csstidy']['all_properties']['white-space'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
563*7d666900SdWiGhT$data['csstidy']['all_properties']['widows'] = 'CSS2.0,CSS2.1,CSS3.0';
564*7d666900SdWiGhT$data['csstidy']['all_properties']['width'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
565*7d666900SdWiGhT$data['csstidy']['all_properties']['word-break'] = 'CSS3.0';
566*7d666900SdWiGhT$data['csstidy']['all_properties']['word-spacing'] = 'CSS1.0,CSS2.0,CSS2.1,CSS3.0';
567*7d666900SdWiGhT$data['csstidy']['all_properties']['word-wrap'] = 'CSS3.0';
568*7d666900SdWiGhT$data['csstidy']['all_properties']['z-index'] = 'CSS2.0,CSS2.1,CSS3.0';
569*7d666900SdWiGhT$data['csstidy']['all_properties']['--custom'] = 'CSS3.0';
570*7d666900SdWiGhT
571*7d666900SdWiGhT/**
572*7d666900SdWiGhT * An array containing all properties that can accept a quoted string as a value.
573*7d666900SdWiGhT *
574*7d666900SdWiGhT * @global array $data['csstidy']['quoted_string_properties']
575*7d666900SdWiGhT */
576*7d666900SdWiGhT$data['csstidy']['quoted_string_properties'] = array('content', 'font-family', 'quotes');
577*7d666900SdWiGhT
578*7d666900SdWiGhT/**
579*7d666900SdWiGhT * An array containing all properties that can be defined multiple times without being overwritten.
580*7d666900SdWiGhT *
581*7d666900SdWiGhT * @global array $data['csstidy']['quoted_string_properties']
582*7d666900SdWiGhT */
583*7d666900SdWiGhT$data['csstidy']['multiple_properties'] = array('background', 'background-image');
584*7d666900SdWiGhT
585*7d666900SdWiGhT/**
586*7d666900SdWiGhT * An array containing all predefined templates.
587*7d666900SdWiGhT *
588*7d666900SdWiGhT * @global array $data['csstidy']['predefined_templates']
589*7d666900SdWiGhT * @version 1.0
590*7d666900SdWiGhT * @see csstidy::load_template()
591*7d666900SdWiGhT */
592*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][0]  = '<span class="at">'; //string before @rule
593*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][1]  = '</span> <span class="format">{</span>'."\n"; //bracket after @-rule
594*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][2]  = '<span class="selector">'; //string before selector
595*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][3]  = '</span> <span class="format">{</span>'."\n"; //bracket after selector
596*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][4]  = '<span class="property">'; //string before property
597*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][5]  = '</span><span class="value">'; //string after property+before value
598*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][6]  = '</span><span class="format">;</span>'."\n"; //string after value
599*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][7]  = '<span class="format">}</span>'; //closing bracket - selector
600*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][8]  = "\n\n"; //space between blocks {...}
601*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][9]  = "\n".'<span class="format">}</span>'. "\n\n"; //closing bracket @-rule
602*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][10] = ''; //indent in @-rule
603*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][11] = '<span class="comment">'; // before comment
604*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][12] = '</span>'."\n"; // after comment
605*7d666900SdWiGhT$data['csstidy']['predefined_templates']['default'][13] = "\n"; // after each line @-rule
606*7d666900SdWiGhT
607*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="at">';
608*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '</span> <span class="format">{</span>'."\n";
609*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="selector">';
610*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '</span><span class="format">{</span>';
611*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="property">';
612*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '</span><span class="value">';
613*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '</span><span class="format">;</span>';
614*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="format">}</span>';
615*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = "\n";
616*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = "\n". '<span class="format">}'."\n".'</span>';
617*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '';
618*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '<span class="comment">'; // before comment
619*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = '</span>'."\n"; // after comment
620*7d666900SdWiGhT$data['csstidy']['predefined_templates']['high_compression'][] = "\n";
621*7d666900SdWiGhT
622*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="at">';
623*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '</span><span class="format">{</span>';
624*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="selector">';
625*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '</span><span class="format">{</span>';
626*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="property">';
627*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '</span><span class="value">';
628*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '</span><span class="format">;</span>';
629*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="format">}</span>';
630*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '';
631*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="format">}</span>';
632*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '';
633*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '<span class="comment">'; // before comment
634*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '</span>'; // after comment
635*7d666900SdWiGhT$data['csstidy']['predefined_templates']['highest_compression'][] = '';
636*7d666900SdWiGhT
637*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '<span class="at">';
638*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '</span> <span class="format">{</span>'."\n";
639*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '<span class="selector">';
640*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '</span>'."\n".'<span class="format">{</span>'."\n";
641*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '	<span class="property">';
642*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '</span><span class="value">';
643*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '</span><span class="format">;</span>'."\n";
644*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '<span class="format">}</span>';
645*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = "\n\n";
646*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = "\n".'<span class="format">}</span>'."\n\n";
647*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '	';
648*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '<span class="comment">'; // before comment
649*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = '</span>'."\n"; // after comment
650*7d666900SdWiGhT$data['csstidy']['predefined_templates']['low_compression'][] = "\n";