Form styling improvements

pull/563/head
dgtlmoon 3 years ago
parent 015353eccc
commit 1e8aa6158b

@ -306,10 +306,10 @@ footer {
font-weight: bold; }
.pure-form textarea {
width: 100%; }
.pure-form ul#fetch_backend {
.pure-form ul.fetch-backend {
margin: 0px;
list-style: none; }
.pure-form ul#fetch_backend > li > * {
.pure-form ul.fetch-backend li > * {
display: inline-block; }
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

@ -413,10 +413,10 @@ footer {
textarea {
width: 100%;
}
ul#fetch_backend {
ul.fetch-backend {
margin: 0px;
list-style: none;
> li {
li {
> * {
display: inline-block;
}

@ -58,7 +58,7 @@
<div class="tab-pane-inner" id="request">
<div class="pure-control-group">
{{ render_field(form.fetch_backend) }}
{{ render_field(form.fetch_backend, class="fetch-backend") }}
<span class="pure-form-message-inline">
<p>Use the <strong>Basic</strong> method (default) where your watched site doesn't need Javascript to render.</p>
<p>The <strong>Chrome/Javascript</strong> method requires a network connection to a running WebDriver+Chrome server, set by the ENV var 'WEBDRIVER_URL'. </p>

@ -75,7 +75,7 @@
<div class="tab-pane-inner" id="fetching">
<div class="pure-control-group">
{{ render_field(form.application.form.fetch_backend) }}
{{ render_field(form.application.form.fetch_backend, class="fetch-backend") }}
<span class="pure-form-message-inline">
<p>Use the <strong>Basic</strong> method (default) where your watched sites don't need Javascript to render.</p>
<p>The <strong>Chrome/Javascript</strong> method requires a network connection to a running WebDriver+Chrome server, set by the ENV var 'WEBDRIVER_URL'. </p>

Loading…
Cancel
Save