PluginProbe
TablePress – Tables in WordPress made easy / 1.9.2
TablePress – Tables in WordPress made easy v1.9.2
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
tablepress / libraries / csstidy / data.inc.php

data.inc.php in TablePress – Tables in WordPress made easy 1.9.2, at libraries/csstidy/data.inc.php

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