Files
piratepoet/lib/Form/Util/Styles.php
2020-03-19 14:19:06 +01:00

115 lines
2.1 KiB
PHP

<?php
namespace MailPoet\Form\Util;
use MailPoetVendor\Sabberworm\CSS\Parser as CSSParser;
class Styles {
private $defaultStyles = <<<EOL
/* form */
.mailpoet_form {
padding: 10px;
}
/* columns */
.mailpoet_column_with_background {
padding: 10px;
}
/* space between columns */
.mailpoet_form_column:not(:first-child) {
margin-left: 20px;
}
/* input wrapper (label + input) */
.mailpoet_paragraph {
line-height:20px;
margin-bottom: 20px;
}
/* labels */
.mailpoet_segment_label,
.mailpoet_text_label,
.mailpoet_textarea_label,
.mailpoet_select_label,
.mailpoet_radio_label,
.mailpoet_checkbox_label,
.mailpoet_list_label,
.mailpoet_date_label {
display:block;
font-weight: normal;
}
/* inputs */
.mailpoet_text,
.mailpoet_textarea,
.mailpoet_select,
.mailpoet_date_month,
.mailpoet_date_day,
.mailpoet_date_year,
.mailpoet_date {
display:block;
}
.mailpoet_text,
.mailpoet_textarea {
width: 200px;
}
.mailpoet_checkbox {
}
.mailpoet_submit {
}
.mailpoet_divider {
}
.mailpoet_message {
}
.mailpoet_validate_success {
font-weight: 600;
color:#468847;
}
.mailpoet_validate_error {
color:#B94A48;
}
.mailpoet_form_loading {
width: 30px;
text-align: center;
line-height: normal;
}
.mailpoet_form_loading > span {
width: 5px;
height: 5px;
background-color: #5b5b5b;
}
EOL;
public function getDefaultStyles() {
return $this->defaultStyles;
}
public function render($stylesheet, $prefix = '') {
if (!$stylesheet) return;
$styles = new CSSParser($stylesheet);
$styles = $styles->parse();
$formattedStyles = [];
foreach ($styles->getAllDeclarationBlocks() as $styleDeclaration) {
$selectors = array_map(function($selector) use ($prefix) {
return sprintf('%s %s', $prefix, $selector->__toString());
}, $styleDeclaration->getSelectors());
$selectors = implode(', ', $selectors);
$rules = array_map(function($rule) {
return $rule->__toString();
}, $styleDeclaration->getRules());
$rules = sprintf('{ %s }', implode(' ', $rules));
$formattedStyles[] = sprintf('%s %s', $selectors, $rules);
}
return implode(PHP_EOL, $formattedStyles);
}
}