Lines Matching refs:style

266         $style = $this->getStyle($attribute, 'column-width', 'width');
267 $style .= $this->getStyle($attribute, 'vertical-align');
268 if ($style != '') {
269 $html .= ' style="' . $style . '"';
311 $style = '<style:style style:name="' . $styleName . '" style:family="table">';
312 $style .= '<style:table-properties';
317 $style .= ' style:width="' . $this->getOdtAbsoluteWidth($metrics, $width) . '"';
320 $style .= ' table:align="' . $align . '"/>';
321 $style .= '</style:style>';
323 $renderer->autostyles[$styleName] = $style;
334 $style = '<style:style style:name="' . $styleName . '" style:family="table-column">';
335 $style .= '<style:table-column-properties';
340 $style .= ' style:column-width="' . $this->getOdtAbsoluteWidth($metrics, $width) . '"';
342 $style .= '/>';
343 $style .= '</style:style>';
345 $renderer->autostyles[$styleName] = $style;
349 $style = '<style:style style:name="' . $styleName . '" style:family="table-cell">';
350 $style .= '<style:table-cell-properties';
351 $style .= ' fo:border="none"';
352 $style .= ' fo:padding-top="0cm"';
353 $style .= ' fo:padding-bottom="0cm"';
357 $style .= ' fo:padding-left="0cm"';
358 $style .= ' fo:padding-right="0.4cm"';
362 $style .= ' fo:padding-left="0.4cm"';
363 $style .= ' fo:padding-right="0cm"';
373 $style .= ' style:vertical-align="' . $align . '"';
376 $style .= ' style:vertical-align="top"';
379 $style .= '/>';
380 $style .= '</style:style>';
382 $renderer->autostyles[$styleName] = $style;
471 $style = $autoStyle['pm1'];
472 if (preg_match('/fo:page-width="([\d\.]+)(.+?)"/', $style, $match) == 1) {
477 if (preg_match('/fo:margin-left="([\d\.]+)(.+?)"/', $style, $match) == 1) {
483 if (preg_match('/fo:margin-right="([\d\.]+)(.+?)"/', $style, $match) == 1) {