mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 05:43:46 +01:00
Add border and margin to facilitate the reading of forms
This commit is contained in:
parent
23fd7c0301
commit
5ceec2e6a5
@ -549,6 +549,7 @@ draft: false
|
|||||||
For this, follow these steps
|
For this, follow these steps
|
||||||
</p>
|
</p>
|
||||||
<form id="form_dat" action="javascript:submitdat()" method="post">
|
<form id="form_dat" action="javascript:submitdat()" method="post">
|
||||||
|
<fieldset class="main">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Import custom files</legend>
|
<legend>Import custom files</legend>
|
||||||
<p>
|
<p>
|
||||||
@ -638,14 +639,19 @@ draft: false
|
|||||||
<input class="range max" airia-label="Maximum value" type="number" id="T1max"
|
<input class="range max" airia-label="Maximum value" type="number" id="T1max"
|
||||||
onchange="numberRangeChange(event)" max="100" value="100">
|
onchange="numberRangeChange(event)" max="100" value="100">
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
</fieldset>
|
||||||
<input type="submit" disabled=true value="Load"></input>
|
<input type="submit" disabled=true value="Load"></input>
|
||||||
</form>
|
</form>
|
||||||
<form id="form_ref">
|
<form id="form_ref">
|
||||||
|
<fieldset class="main">
|
||||||
|
<fieldset>
|
||||||
<legend>statistics</legend>
|
<legend>statistics</legend>
|
||||||
<p>Select a reference from <strong>already selected data</strong> (by default first is selected -it's the <abbr
|
<p>Select a reference from <strong>already selected data</strong> (by default first is selected -it's the <abbr
|
||||||
title="Theoretical best estimate">TBE</abbr> if present- is already selected)</p>
|
title="Theoretical best estimate">TBE</abbr> if present- is already selected)</p>
|
||||||
<label for="sel_ref">Reference</label>
|
<label for="sel_ref">Reference</label>
|
||||||
<select id="sel_ref" onchange="reloadStat()"></select>
|
<select id="sel_ref" onchange="reloadStat()"></select>
|
||||||
|
</fieldset>
|
||||||
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
<p>Now you can see the list of selected data and some statistics about these data</p>
|
<p>Now you can see the list of selected data and some statistics about these data</p>
|
||||||
<section id="data">
|
<section id="data">
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
form fieldset.table {
|
form fieldset.table {
|
||||||
display: table;
|
display: table;
|
||||||
}
|
}
|
||||||
|
form {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
ul.nestedCbList {
|
ul.nestedCbList {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
@ -8,6 +11,14 @@ ul.nestedCbList {
|
|||||||
form button.SelectAll {
|
form button.SelectAll {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
form fieldset.main {
|
||||||
|
padding: 10px;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
}
|
||||||
|
form input[type="submit"] {
|
||||||
|
margin-top:10px;
|
||||||
|
}
|
||||||
form label{
|
form label{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
|
Loading…
Reference in New Issue
Block a user