Lines Matching refs:CSS

38 	var $CSS;
62 $this->CSS = [];
88 // Remove Comment tags <!-- ... --> inside CSS as <style> in HTML document
89 // Remove Comment tags /* ... */ inside CSS as <style> in HTML document
110 // CSS inside external files
194 // CSS as <style> in HTML document
243 // Characters "(" ")" and ";" in url() e.g. background-image, cause problems parsing the CSS string
351 if (isset($this->CSS[$tag]) && $tag) {
352 $this->CSS[$tag] = $this->array_merge_recursive_unique($this->CSS[$tag], $classproperties);
354 $this->CSS[$tag] = $classproperties;
393 if (isset($this->CSS[$tag]) && $tag) {
394 $this->CSS[$tag] = $this->array_merge_recursive_unique($this->CSS[$tag], $classproperties);
396 $this->CSS[$tag] = $classproperties;
467 // Remove CSS (tags and content), if any
478 // Characters "(" ")" and ";" in url() e.g. background-image, cause problems parsing the CSS string
504 // Fix incomplete CSS code
510 // Make CSS[Name-of-the-class] = array(key => value)
1351 // Save Cascading CSS e.g. "div.topic p" at this block level
1361 // for CSS handling
1546 // Save Cascading CSS e.g. "div.topic p" at this block level
1573 // Cascading forward CSS e.g. "table.topic td" for this table in $this->tablecascadeCSS
1599 // Save Cascading CSS e.g. "div.topic p" at this block level
1602 // Cascading forward CSS
1611 } // custom tag, but follows CSS principle that border-collapse is inherited
1744 // cellSpacing overwrites TABLE default but not specific CSS set on table
1748 // cellPadding overwrites TD/TH default but not specific CSS set on cell
1758 if (isset($this->CSS[$tag]) && $this->CSS[$tag]) {
1759 $zp = $this->CSS[$tag];
1772 if (isset($this->CSS['CLASS>>' . $class]) && $this->CSS['CLASS>>' . $class]) {
1773 $zp = $this->CSS['CLASS>>' . $class];
1787 foreach ($this->CSS as $k => $val) {
1808 $zp = $this->CSS[$tag . '>>SELECTORNTHCHILD>>' . $m[1]];
1824 if (isset($this->CSS['LANG>>' . $attr['LANG']]) && $this->CSS['LANG>>' . $attr['LANG']]) {
1825 $zp = $this->CSS['LANG>>' . $attr['LANG']];
1833 } elseif (isset($this->CSS['LANG>>' . $shortlang]) && $this->CSS['LANG>>' . $shortlang]) {
1834 $zp = $this->CSS['LANG>>' . $shortlang];
1846 if (isset($attr['ID']) && isset($this->CSS['ID>>' . $attr['ID']]) && $this->CSS['ID>>' . $attr['ID']]) {
1847 $zp = $this->CSS['ID>>' . $attr['ID']];
1861 if (isset($this->CSS[$tag . '>>CLASS>>' . $class]) && $this->CSS[$tag . '>>CLASS>>' . $class]) {
1862 $zp = $this->CSS[$tag . '>>CLASS>>' . $class];
1875 if (isset($this->CSS[$tag . '>>LANG>>' . $attr['LANG']]) && $this->CSS[$tag . '>>LANG>>' . $attr['LANG']]) {
1876 $zp = $this->CSS[$tag . '>>LANG>>' . $attr['LANG']];
1884 } elseif (isset($this->CSS[$tag . '>>LANG>>' . $shortlang]) && $this->CSS[$tag . '>>LANG>>' . $shortlang]) {
1885 $zp = $this->CSS[$tag . '>>LANG>>' . $shortlang];
1897 if (isset($attr['ID']) && isset($this->CSS[$tag . '>>ID>>' . $attr['ID']]) && $this->CSS[$tag . '>>ID>>' . $attr['ID']]) {
1898 $zp = $this->CSS[$tag . '>>ID>>' . $attr['ID']];
1931 } elseif ($inherit === 'TOPTABLE' || $inherit === 'TABLE') { // NB looks at $this->tablecascadeCSS-1 for cascading CSS
1974 // INLINE STYLE e.g. style="CSS:property"
1989 // Convert inline Properties back to CSS
2039 // CSS says text-decoration is not inherited, but IE7 does??
2154 if (isset($this->CSS[$tag])) {
2155 $zp = $this->CSS[$tag];
2163 if (isset($this->CSS['CLASS>>' . $class])) {
2164 $zp = $this->CSS['CLASS>>' . $class];
2171 if (isset($attr['ID']) && isset($this->CSS['ID>>' . $attr['ID']])) {
2172 $zp = $this->CSS['ID>>' . $attr['ID']];
2180 if (isset($this->CSS[$tag . '>>CLASS>>' . $class])) {
2181 $zp = $this->CSS[$tag . '>>CLASS>>' . $class];
2188 if (isset($attr['ID']) && isset($this->CSS[$tag . '>>ID>>' . $attr['ID']])) {
2189 $zp = $this->CSS[$tag . '>>ID>>' . $attr['ID']];
2215 // INLINE STYLE e.g. style="CSS:property"