AccompanyingPeriod list: adding new wrapheader asset and improve wraplist structure

wrapheader manage header of flex-table first row. the 2 cascades are independant.
This commit is contained in:
2021-08-20 13:35:15 +02:00
parent 28f69d8dec
commit 38dcca7397
2 changed files with 116 additions and 91 deletions

View File

@@ -203,3 +203,36 @@ div.wraplist {
}
}
}
/*
* __WRAP_HEADER_BLOC________
* HEADER ROW FOR FLEX-TABLE ELEMENTS
*/
div.wrapheader {
width: 100%;
div.wh-row {
display: flex;
flex-direction: row;
&:first-child {
align-items: baseline;
}
&:last-child {}
div.wh-col {
&:first-child {
flex-grow: 0; flex-shrink: 1; flex-basis: auto;
}
&:last-child {
flex-grow: 1; flex-shrink: 1; flex-basis: auto;
display: flex;
justify-content: flex-end;
}
}
}
}