wip render box person thirdparty display bloc

This commit is contained in:
2021-07-27 23:15:52 +02:00
parent 89dfea74b3
commit df3d32c653
12 changed files with 412 additions and 264 deletions

View File

@@ -7,6 +7,7 @@ require('./scss/person_with_period.scss');
require('./scss/household_banner.scss');
require('./scss/accompanying_period_work.scss');
require('./scss/person_by_phonenumber.scss');
require('./scss/render_box.scss');
require('./svg/phone-alt-solid.svg');
require('./svg/mobile-alt-solid.svg');

View File

@@ -2,24 +2,11 @@
div.list-with-period,
div.list-household-members {
.chill-entity__person {
.chill-entity__person__first-name,
.chill-entity__person__last-name {
font-size: 1.3em;
font-weight: 700;
}
}
.chill_denomination {
font-size: 1.3em;
font-weight: 700;
}
div.comment {
// for the comment for household-members
}
div.periods {
div.header,
div.header,
div.list-content {
width: calc(100% - 40px);
margin-left: 40px;
@@ -28,17 +15,17 @@ div.list-household-members {
position: relative;
a.sc-button {
position: absolute;
width: 30px;
width: 30px;
height: 30px;
top: 10px;
top: 10px;
left: -40px;
padding: 0;
i {
padding: 5px;
}
}
abbr.referrer {
font-size: 70%;
abbr.referrer {
font-size: 70%;
}
span.user {
margin-left: 1em;
@@ -51,3 +38,6 @@ div.list-household-members {
}
}
}

View File

@@ -0,0 +1,20 @@
div.chill-entity {
&.person {
&.label {
h3.denomination {
font-size: 1.3em;
font-weight: 700;
a {
text-decoration: none;
}
span.firstname, span.lastname, span.altname {}
span.badge {
margin-left: 0.3em;
}
}
p.moreinfo {}
}
&.row {}
&.bloc {}
}
}