diff --git a/changedetectionio/static/styles/styles.css b/changedetectionio/static/styles/styles.css index 91b0c85b..560cd54d 100644 --- a/changedetectionio/static/styles/styles.css +++ b/changedetectionio/static/styles/styles.css @@ -407,6 +407,8 @@ and also iPads specifically. .edit-form #actions { display: block; background: #fff; } + .edit-form .pure-form-message-inline { + padding-left: 0; } ul { padding-left: 1em; diff --git a/changedetectionio/static/styles/styles.scss b/changedetectionio/static/styles/styles.scss index 188ee227..b13fc5a1 100644 --- a/changedetectionio/static/styles/styles.scss +++ b/changedetectionio/static/styles/styles.scss @@ -576,6 +576,10 @@ $form-edge-padding: 20px; display: block; background: #fff; } + + .pure-form-message-inline { + padding-left: 0; + } } ul { diff --git a/changedetectionio/templates/edit.html b/changedetectionio/templates/edit.html index 29e8b6aa..e6df51e8 100644 --- a/changedetectionio/templates/edit.html +++ b/changedetectionio/templates/edit.html @@ -58,24 +58,30 @@ +
-
- {{ render_field(form.method) }} -
- Note: Request Headers and Body settings are ONLY used by Basic fast Plaintext/HTTP Client fetch method. - {{ render_field(form.headers, rows=5, placeholder="Example + + + Request override is currently only used by the Basic fast Plaintext/HTTP Client method. + +
+ {{ render_field(form.method) }} +
+
+{{ render_field(form.headers, rows=5, placeholder="Example Cookie: foobar User-Agent: wonderbra 1.0") }} -
-
- {{ render_field(form.body, rows=5, placeholder="Example +
+
+ {{ render_field(form.body, rows=5, placeholder="Example { \"name\":\"John\", \"age\":30, \"car\":null }") }} -
- + + +