10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-26 06:01:49 +02: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>
</fieldset>
<fieldset id="excitationFilter">
<ul style="list-style-type: none;">
<legend>Filters</legend>
<ul class="nestedCbList" style="padding-left: 0em;">
<li>
<h1>excitations types</h1>
<input type="checkbox" onchange="nestedCheckbox_change(event)" id="cb_exType_All"></input>
<label for="cb_exType_All"> All</label>
</li>
<ul id="cb_exTypeList" style="list-style-type: none;">
<ul id="cb_exTypeList" class="nestedCbList">
</ul>
<li id="li_cb_unsafe">
<input type="checkbox" id="cb_unsafe" name="unsafe">

View File

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