diff --git a/README.md b/README.md index 53cafae..3244901 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Formerly 1.1.1 +# Formerly 1.1.2 ## Installing @@ -54,8 +54,14 @@ regular `ElementCriteriaModel`s. For example, to list submissions to the {% endfor %} ``` +## Updates + +* 1.1.2 + * Updated edit form UI to follow new Craft 2.3 Matrix appearance. + ## Todo * File uploads * Better validation * More question attributes, e.g. placeholder, error messages +* Date range selection for data export \ No newline at end of file diff --git a/formerly/FormerlyPlugin.php b/formerly/FormerlyPlugin.php index 13418ac..53aed1b 100644 --- a/formerly/FormerlyPlugin.php +++ b/formerly/FormerlyPlugin.php @@ -10,7 +10,7 @@ public function getName() public function getVersion() { - return '1.1.1'; + return '1.1.2'; } public function getDeveloper() diff --git a/formerly/resources/formerly.css b/formerly/resources/formerly.css new file mode 100644 index 0000000..c3f0a3a --- /dev/null +++ b/formerly/resources/formerly.css @@ -0,0 +1,6 @@ +@charset "utf-8"; + +body .matrixblock .titlebar.nocheckbox +{ + padding-left: 14px; +} \ No newline at end of file diff --git a/formerly/templates/forms/_edit.html b/formerly/templates/forms/_edit.html index a08d0ce..a775b3b 100644 --- a/formerly/templates/forms/_edit.html +++ b/formerly/templates/forms/_edit.html @@ -1,9 +1,16 @@ {% extends "_layouts/cp" %} +{% includeCssResource('formerly/formerly.css') %} + {% macro questionMarkup(id, question) %} {% import '_includes/forms' as forms %}
+
+
+
+
+