mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
1cc78fa0b1
* updated contacts flow update * json file updates * updated contacts edit and view list * keep contacts tab selected * lint fix * replaced hardcoded strings with constant * updated padding in box
225 lines
3.5 KiB
SCSS
225 lines
3.5 KiB
SCSS
.address-book-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.address-book {
|
|
flex: 0.4 1 100%;
|
|
|
|
@include screen-sm-max {
|
|
flex: 1;
|
|
max-width: 100%;
|
|
|
|
&__container {
|
|
min-height: 100%;
|
|
}
|
|
}
|
|
|
|
&__header {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&__header--edit {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
.button {
|
|
@include H6;
|
|
|
|
justify-content: flex-end;
|
|
color: var(--color-error-default);
|
|
}
|
|
}
|
|
|
|
&__container {
|
|
margin: 0 auto;
|
|
min-height: 70%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
&__icon {
|
|
margin: 0 auto 16px auto;
|
|
display: block;
|
|
}
|
|
|
|
&__title {
|
|
@include H4;
|
|
|
|
font-weight: 600;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
&__sub-title {
|
|
font-size: small;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
&__link {
|
|
background-color: transparent;
|
|
color: var(--color-primary-default);
|
|
}
|
|
|
|
&__input {
|
|
@include H4;
|
|
|
|
border: 1px solid var(--color-border-muted);
|
|
border-radius: 6px;
|
|
color: var(--color-text-muted);
|
|
padding: 0.875rem 1rem;
|
|
|
|
&:focus-within {
|
|
border-color: var(--color-primary-default);
|
|
}
|
|
|
|
margin-top: 0.25rem;
|
|
|
|
&--address {
|
|
@include H6;
|
|
}
|
|
}
|
|
|
|
&__view-contact {
|
|
&__text-area-wrapper {
|
|
height: 96px !important;
|
|
}
|
|
|
|
&__text-area {
|
|
line-height: initial !important;
|
|
}
|
|
|
|
&__address {
|
|
height: 90px !important;
|
|
|
|
textarea {
|
|
padding-top: 10px !important;
|
|
}
|
|
}
|
|
|
|
&__group {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
padding: 1.5rem 1.5rem 0 1.5rem;
|
|
|
|
&__label,
|
|
&__label--capitalized {
|
|
@include H7;
|
|
|
|
color: var(--color-text-alternative);
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
&__label--capitalized {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
&__value,
|
|
&__static-address {
|
|
@include H4;
|
|
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
color: var(--color-text-muted);
|
|
word-break: break-word;
|
|
|
|
&--address {
|
|
@include H6;
|
|
}
|
|
|
|
&--copy-icon {
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
padding: 0;
|
|
background: none;
|
|
padding-left: 0;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
&__static-address {
|
|
@include H6;
|
|
|
|
&--copy-icon {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: var(--color-text-default);
|
|
}
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__add-contact {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
padding-bottom: 0 !important;
|
|
height: 100%;
|
|
padding-top: 0;
|
|
|
|
&__content {
|
|
flex: 1 1 auto;
|
|
height: 100%;
|
|
padding-top: 0;
|
|
|
|
&__username {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
&__error {
|
|
@include H7;
|
|
|
|
left: 8px;
|
|
color: var(--color-error-default);
|
|
}
|
|
}
|
|
}
|
|
|
|
.address-book-add-button {
|
|
&__button {
|
|
@include screen-sm-max {
|
|
&--hidden {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.address-book--hidden {
|
|
display: none;
|
|
}
|
|
|
|
.address-book-contact-content {
|
|
flex: 0.4 1 100%;
|
|
|
|
@include screen-sm-max {
|
|
flex: 1;
|
|
}
|
|
}
|