Input field tidyup (#611)

pull/613/head
dgtlmoon 3 years ago committed by GitHub
parent 890e1e6dcd
commit 3b11c474d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -284,6 +284,11 @@ footer {
.pure-form { .pure-form {
/* The input fields with errors */ /* The input fields with errors */
/* The list of errors */ } /* The list of errors */ }
.pure-form fieldset {
padding-top: 0px; }
.pure-form fieldset ul {
padding-bottom: 0px;
margin-bottom: 0px; }
.pure-form .pure-control-group, .pure-form .pure-group, .pure-form .pure-controls { .pure-form .pure-control-group, .pure-form .pure-group, .pure-form .pure-controls {
padding-bottom: 1em; } padding-bottom: 1em; }
.pure-form .pure-control-group div, .pure-form .pure-group div, .pure-form .pure-controls div { .pure-form .pure-control-group div, .pure-form .pure-group div, .pure-form .pure-controls div {
@ -447,4 +452,7 @@ ul {
.time-check-widget tr { .time-check-widget tr {
display: inline; } display: inline; }
.time-check-widget tr input[type="number"] { .time-check-widget tr input[type="number"] {
width: 4em; } width: 5em; }
#webdriver-override-options input[type="number"] {
width: 5em; }

@ -375,6 +375,13 @@ footer {
.pure-form { .pure-form {
fieldset {
padding-top: 0px;
ul {
padding-bottom: 0px;
margin-bottom: 0px;
}
}
.pure-control-group, .pure-group, .pure-controls { .pure-control-group, .pure-group, .pure-controls {
padding-bottom: 1em; padding-bottom: 1em;
div { div {
@ -637,7 +644,13 @@ ul {
tr { tr {
display: inline; display: inline;
input[type="number"] { input[type="number"] {
width: 4em; width: 5em;
} }
} }
}
#webdriver-override-options {
input[type="number"] {
width: 5em;
}
} }

@ -125,7 +125,7 @@ User-Agent: wonderbra 1.0") }}
</div> </div>
<div class="tab-pane-inner" id="filters-and-triggers"> <div class="tab-pane-inner" id="filters-and-triggers">
<fieldset> <div>
<div class="pure-control-group"> <div class="pure-control-group">
<strong>Pro-tips:</strong><br/> <strong>Pro-tips:</strong><br/>
<ul> <ul>
@ -153,7 +153,7 @@ User-Agent: wonderbra 1.0") }}
href="https://github.com/dgtlmoon/changedetection.io/wiki/CSS-Selector-help">here for more CSS selector help</a>.<br/> href="https://github.com/dgtlmoon/changedetection.io/wiki/CSS-Selector-help">here for more CSS selector help</a>.<br/>
</span> </span>
</div> </div>
<fieldset class="pure-group"> <div class="pure-control-group">
{{ render_field(form.subtractive_selectors, rows=5, placeholder="header {{ render_field(form.subtractive_selectors, rows=5, placeholder="header
footer footer
nav nav
@ -164,7 +164,7 @@ nav
<li> Add multiple elements or CSS selectors per line to ignore multiple parts of the HTML. </li> <li> Add multiple elements or CSS selectors per line to ignore multiple parts of the HTML. </li>
</ul> </ul>
</span> </span>
</fieldset> </div>
</fieldset> </fieldset>
<fieldset class="pure-group"> <fieldset class="pure-group">
{{ render_field(form.ignore_text, rows=5, placeholder="Some text to ignore in a line {{ render_field(form.ignore_text, rows=5, placeholder="Some text to ignore in a line

Loading…
Cancel
Save