2019-07-31 21:56:44 +02:00
|
|
|
.address-book-wrapper {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.address-book {
|
2021-04-27 20:25:58 +02:00
|
|
|
flex: 0.4 1 100%;
|
2019-07-31 21:56:44 +02:00
|
|
|
|
2021-09-11 20:13:36 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-07-31 21:56:44 +02:00
|
|
|
flex: 1;
|
|
|
|
max-width: 100%;
|
2021-04-27 20:25:58 +02:00
|
|
|
|
|
|
|
&__container {
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__entry {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
padding: 16px 14px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
border-bottom: 1px solid #dedede;
|
|
|
|
|
|
|
|
&:hover {
|
2022-01-06 18:35:49 +01:00
|
|
|
border: 1px solid var(--primary-blue);
|
2019-07-31 21:56:44 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__header,
|
|
|
|
&__header--edit {
|
2019-07-31 21:56:44 +02:00
|
|
|
&__name {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H3;
|
|
|
|
|
2019-07-31 21:56:44 +02:00
|
|
|
margin-left: 24px;
|
2021-09-03 17:54:20 +02:00
|
|
|
max-width: 8em;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header--edit {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.button {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H6;
|
|
|
|
|
2019-07-31 21:56:44 +02:00
|
|
|
justify-content: flex-end;
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--accent-red);
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-27 20:25:58 +02:00
|
|
|
&__container {
|
|
|
|
margin: 0 auto;
|
|
|
|
min-height: 70%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
@include H4;
|
|
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__sub-title {
|
|
|
|
font-size: small;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__link {
|
|
|
|
background-color: #fff;
|
|
|
|
color: #037dd6;
|
|
|
|
}
|
|
|
|
|
2019-07-31 21:56:44 +02:00
|
|
|
&__input {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H4;
|
|
|
|
|
2022-01-06 18:35:49 +01:00
|
|
|
border: 1px solid var(--Grey-200);
|
2020-08-19 23:02:42 +02:00
|
|
|
border-radius: 6px;
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--Grey-800);
|
2020-08-19 23:02:42 +02:00
|
|
|
padding: 0.875rem 1rem;
|
|
|
|
|
|
|
|
&:focus-within {
|
2022-01-06 18:35:49 +01:00
|
|
|
border-color: var(--Blue-500);
|
2020-08-19 23:02:42 +02:00
|
|
|
}
|
2020-07-15 15:13:40 +02:00
|
|
|
|
|
|
|
margin-top: 0.25rem;
|
2019-07-31 21:56:44 +02:00
|
|
|
|
|
|
|
&--address {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H6;
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__view-contact {
|
|
|
|
&__text-area-wrapper {
|
|
|
|
height: 96px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text-area {
|
|
|
|
line-height: initial !important;
|
|
|
|
}
|
|
|
|
|
2021-10-13 19:54:48 +02:00
|
|
|
&__address {
|
|
|
|
height: 60px !important;
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
padding-top: 10px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-31 21:56:44 +02:00
|
|
|
&__group {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
padding: 1.5rem 1.5rem 0 1.5rem;
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__label,
|
|
|
|
&__label--capitalized {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H7;
|
|
|
|
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--Grey-500);
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-bottom: 0.25rem;
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__label--capitalized {
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__value,
|
|
|
|
&__static-address {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H4;
|
|
|
|
|
2019-07-31 21:56:44 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--Grey-800);
|
2019-07-31 21:56:44 +02:00
|
|
|
word-break: break-word;
|
|
|
|
|
|
|
|
&--address {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H6;
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&--copy-icon {
|
2020-03-16 14:44:02 +01:00
|
|
|
display: inline-block;
|
|
|
|
width: 20px;
|
2019-10-30 00:14:18 +01:00
|
|
|
height: 20px;
|
2020-03-16 14:44:02 +01:00
|
|
|
padding: 0;
|
|
|
|
background: none;
|
2020-07-24 16:17:03 +02:00
|
|
|
padding-left: 0;
|
|
|
|
margin-left: 10px;
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__static-address {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H6;
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2019-07-31 21:56:44 +02:00
|
|
|
&--copy-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.unit-input__input {
|
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__edit-contact {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-container__footer {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__add-contact {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__error {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-07-31 21:56:44 +02:00
|
|
|
left: 8px;
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--red);
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.address-book-add-button {
|
|
|
|
&__button {
|
|
|
|
position: absolute;
|
2021-05-01 03:15:19 +02:00
|
|
|
top: 85px;
|
2019-07-31 21:56:44 +02:00
|
|
|
right: 16px;
|
2021-05-01 03:15:19 +02:00
|
|
|
width: auto;
|
2020-11-16 21:07:48 +01:00
|
|
|
|
2021-09-11 20:13:36 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2021-05-01 03:15:19 +02:00
|
|
|
top: 16px;
|
|
|
|
right: 60px;
|
2021-09-03 17:54:20 +02:00
|
|
|
|
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-11-16 21:07:48 +01:00
|
|
|
}
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.address-book--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.address-book-contact-content {
|
2021-04-27 20:25:58 +02:00
|
|
|
flex: 0.4 1 100%;
|
2019-07-31 21:56:44 +02:00
|
|
|
|
2021-09-11 20:13:36 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2020-07-15 15:13:40 +02:00
|
|
|
flex: 1;
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
}
|