Basic Procedure addition working.
This commit is contained in:
@@ -40,4 +40,47 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.procedure_creation_leftright {
|
||||
width:100%;
|
||||
overflow:auto;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
background-color: #FFFFFF;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
div.procedure_creation_leftright div.left {
|
||||
height: 100%;
|
||||
width:15%;
|
||||
float:left;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
background-color: #FFF4A3;
|
||||
padding: 5px;
|
||||
flex: 0.25;
|
||||
}
|
||||
|
||||
div.procedure_creation_leftright div.right {
|
||||
height: 100%;
|
||||
width:84%;
|
||||
float:left;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
background-color:#D9EEE1;
|
||||
padding: 5px;
|
||||
flex: 0.75;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form_text {
|
||||
width: 97%;
|
||||
}
|
||||
|
||||
div.gallery {
|
||||
width: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<div class="gallery" style="display: grid;grid-template-columns: repeat({{ PLATE_COLUMNS }}, 7.5vw);grid-template-rows: repeat({{ PLATE_ROWS }}, 7.5vw);grid-gap: 2px;">
|
||||
<div class="gallery" style="display: grid;grid-template-columns: repeat({{ plate_columns }}, {{ vw }}vw);grid-template-rows: repeat({{ plate_rows }}, {{ vw }}vw);grid-gap: 2px;">
|
||||
{% for sample in samples %}
|
||||
<div class="well data-link sample" id="{{sample['submitter_id']}}" style="background-color: {{sample['background_color']}};
|
||||
<div class="well data-link sample" id="{{sample['submitter_id']}}" style="background-color: {{ sample['background_color'] }};
|
||||
border: 1px solid #000;
|
||||
padding: 20px;
|
||||
grid-column-start: {{sample['column']}};
|
||||
|
||||
Reference in New Issue
Block a user