10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-11-04 21:24:00 +01:00

Fix excitationFilter presentation

This commit is contained in:
Mickaël Véril 2020-01-06 11:41:28 +01:00
parent 134dc0c6e4
commit 1d59151f3e
2 changed files with 7 additions and 4 deletions

View File

@ -421,13 +421,13 @@ draft: false
</div> </div>
</fieldset> </fieldset>
<fieldset id="excitationFilter"> <fieldset id="excitationFilter">
<ul style="list-style-type: none;"> <legend>Filters</legend>
<ul class="nestedCbList" style="padding-left: 0em;">
<li> <li>
<h1>excitations types</h1>
<input type="checkbox" onchange="nestedCheckbox_change(event)" id="cb_exType_All"></input> <input type="checkbox" onchange="nestedCheckbox_change(event)" id="cb_exType_All"></input>
<label for="cb_exType_All"> All</label> <label for="cb_exType_All"> All</label>
</li> </li>
<ul id="cb_exTypeList" style="list-style-type: none;"> <ul id="cb_exTypeList" class="nestedCbList">
</ul> </ul>
<li id="li_cb_unsafe"> <li id="li_cb_unsafe">
<input type="checkbox" id="cb_unsafe" name="unsafe"> <input type="checkbox" id="cb_unsafe" name="unsafe">

View File

@ -1,7 +1,10 @@
form fieldset.table { form fieldset.table {
display: table; display: table;
} }
ul.nestedCbList {
list-style-type: none;
padding-left: 1em;
}
form fieldset.table div { form fieldset.table div {
display: table-row; display: table-row;
} }