1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/settings/contact-list-tab/index.scss
Nidhi Kumari a8e194a8f6
Send flow UI update (#19465)
* removed recents and added accounts in send flow

* updated add contact button and fixed full screen view

* updated ui for contacts

* fixed lint errors and test

* fixed lint errors

* fixed lint errors

* updated spec files

* fixed lint errors

* updated snapshot

* fixed edit in spec files

* removed unused console statement

* updated snapshot

* added userInput check

* updated snapshot and added hover
2023-06-08 22:39:39 +05:30

236 lines
3.6 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,
&__header--edit {
&__name {
@include H3;
margin-left: 24px;
max-width: 8em;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
}
&__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;
}
}
.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 {
@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;
}
}