Lines Matching refs:cssManager

846 	private $cssManager;
1463 $this->cssManager->ReadCSS('<style> ' . $css . ' </style>');
10929 $this->cssManager->CSS['BODY']['FONT-FAMILY'] = $font;
10938 $this->cssManager->CSS['BODY']['FONT-SIZE'] = $fontsize . 'pt';
10945 $this->cssManager->CSS['BODY'][strtoupper($prop)] = $val;
10972 $this->cssManager->CSS['BODY']['DIRECTION'] = $this->directionality;
13203 $html = $this->cssManager->ReadCSS($html);
13218 $zproperties = $this->cssManager->readInlineCSS($mm[1]);
13231 $properties = $this->cssManager->MergeCSS('BLOCK', 'BODY', '');
13233 $properties = $this->cssManager->array_merge_recursive_unique($properties, $zproperties);
13237 $this->cssManager->CSS['BODY']['DIRECTION'] = $properties['DIRECTION'];
13239 if (!isset($this->cssManager->CSS['BODY']['DIRECTION'])) {
13240 $this->cssManager->CSS['BODY']['DIRECTION'] = $this->directionality;
13242 $this->SetDirectionality($this->cssManager->CSS['BODY']['DIRECTION']);
13252 if (!isset($this->cssManager->CSS['BODY'])) {
13253 $this->cssManager->CSS['BODY'] = [];
13271 if ($this->state == 0 && ((isset($this->cssManager->CSS['@PAGE']) && $this->cssManager->CSS['@PAGE']) || (isset($this->cssManager->CSS['@PAGE>>PSEUDO>>FIRST']) && $this->cssManager->CSS['@PAGE>>PSEUDO>>FIRST']))) { // mPDF 5.7.3
13322 $properties = $this->cssManager->MergeCSS('BLOCK', 'BODY', '');
13980 $properties = $this->cssManager->MergeCSS('BLOCK', 'BODY', '');
13987 $p = $this->cssManager->MergeCSS('BLOCK', $tag, $attr);
14936 if (isset($this->cssManager->CSS['@PAGE'])) {
14937 $zp = $this->cssManager->CSS['@PAGE'];
14963 if (isset($this->cssManager->CSS['@PAGE>>PSEUDO>>RIGHT']) && $side == 'R') {
14964 $zp = $this->cssManager->CSS['@PAGE>>PSEUDO>>RIGHT'];
14986 if (isset($this->cssManager->CSS['@PAGE>>PSEUDO>>LEFT']) && $side == 'L') {
14987 $zp = $this->cssManager->CSS['@PAGE>>PSEUDO>>LEFT'];
15009 if (isset($this->cssManager->CSS['@PAGE>>PSEUDO>>FIRST']) && $first) {
15010 $zp = $this->cssManager->CSS['@PAGE>>PSEUDO>>FIRST'];
15033 if (isset($this->cssManager->CSS['@PAGE>>NAMED>>' . $name])) {
15034 $zp = $this->cssManager->CSS['@PAGE>>NAMED>>' . $name];
15060 if (isset($this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>RIGHT']) && $side == 'R') {
15061 $zp = $this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>RIGHT'];
15083 if (isset($this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>LEFT']) && $side == 'L') {
15084 $zp = $this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>LEFT'];
15106 if (isset($this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>FIRST']) && $first) {
15107 $zp = $this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>FIRST'];
18058 if (isset($this->cssManager->CSS['BODY']['FONT-STYLE'])) {
18059 $bodystyle['FONT-STYLE'] = $this->cssManager->CSS['BODY']['FONT-STYLE'];
18062 if (isset($this->cssManager->CSS['BODY']['FONT-WEIGHT'])) {
18063 $bodystyle['FONT-WEIGHT'] = $this->cssManager->CSS['BODY']['FONT-WEIGHT'];
18066 if (isset($this->cssManager->CSS['BODY']['COLOR'])) {
18067 $bodystyle['COLOR'] = $this->cssManager->CSS['BODY']['COLOR'];
18320 $bs = $this->cssManager->setCSSboxshadow($v);
18830 $ts = $this->cssManager->setCSStextshadow($v);