diff --git a/CHANGELOG.md b/CHANGELOG.md index e69d655..7e21f16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v1.3.0 +## 11/18/2015 + +1. [](#new) + * SimpleForm replaced with Forms plugin +2. [](#bugfix) + * Admin plugin bugfixes + # v1.2.0 ## 09/18/2015 diff --git a/css-compiled/template.css b/css-compiled/template.css index b0e525d..458f76a 100644 --- a/css-compiled/template.css +++ b/css-compiled/template.css @@ -586,8 +586,8 @@ textarea, input[type="email"], input[type="number"], input[type="password"], inp .form-field .required { color: #F3443F; - font-size: 3rem; - line-height: 3rem; + font-size: 2rem; + line-height: 2rem; vertical-align: top; height: 1.5rem; display: inline-block; } diff --git a/scss/template/_forms.scss b/scss/template/_forms.scss index 9255b4c..feb5eb7 100644 --- a/scss/template/_forms.scss +++ b/scss/template/_forms.scss @@ -25,8 +25,8 @@ label { .form-field { .required { color: #F3443F; - font-size: $core-font-size + 2rem; - line-height: $core-font-size + 2rem; + font-size: $core-font-size + 1rem; + line-height: $core-font-size + 1rem; vertical-align: top; height: 1.5rem; display: inline-block; diff --git a/templates/form.html.twig b/templates/form.html.twig deleted file mode 100644 index 7bedb48..0000000 --- a/templates/form.html.twig +++ /dev/null @@ -1,8 +0,0 @@ -{% extends 'partials/base.html.twig' %} - -{% block content %} - - {{ content }} - {% include "forms/form.html.twig" %} - -{% endblock %} diff --git a/templates/formdata.html.twig b/templates/formdata.html.twig index 1cd4c58..5ba6495 100644 --- a/templates/formdata.html.twig +++ b/templates/formdata.html.twig @@ -1,12 +1,12 @@ {% extends 'partials/base.html.twig' %} {% block content %} - +
{{ content }} -
{{ form.message }}
+

{{ form.message }}

Here is the summary of what you wrote to us:

{% include "forms/data.html.twig" %} - +
{% endblock %} diff --git a/templates/modular/form.html.twig b/templates/modular/form.html.twig new file mode 100644 index 0000000..32d0092 --- /dev/null +++ b/templates/modular/form.html.twig @@ -0,0 +1,10 @@ +
+
+
+ {% include "forms/form.html.twig" %} +
+ +
+