mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
d76b458235
* fix(privateKey): Restore hold-to-reveal button for private key export * lint and unit test fixes * adding e2e tests to reveal private key * fixing lint issues * fixed: Private key is able to be presented without tapping and holding the "Hold to reveal" CTA * Incorrect password test and support hold to reveal * improving unit tests --------- Co-authored-by: Plasma Corral <32695229+plasmacorral@users.noreply.github.com> Co-authored-by: Gustavo Antunes <17601467+gantunesr@users.noreply.github.com>
48 lines
1.2 KiB
SCSS
48 lines
1.2 KiB
SCSS
@import 'cancel-transaction/index';
|
|
@import 'confirm-remove-account/index';
|
|
@import 'edit-approval-permission/index';
|
|
@import 'hide-token-confirmation-modal/index';
|
|
@import 'new-account-modal/index';
|
|
@import 'qr-scanner/index';
|
|
@import 'transaction-confirmed/index';
|
|
@import 'customize-nonce/index';
|
|
@import 'convert-token-to-nft-modal/index';
|
|
@import 'contract-details-modal/index';
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-mmi)
|
|
@import '../../institutional/confirm-remove-jwt-modal/index';
|
|
@import '../../institutional/custody-confirm-link-modal/index';
|
|
@import '../../institutional/transaction-failed-modal/index';
|
|
///: END:ONLY_INCLUDE_IN
|
|
@import 'eth-sign-modal/index';
|
|
|
|
.modal {
|
|
z-index: 1050;
|
|
position: fixed;
|
|
width: 500px;
|
|
transform: translate3d(-50%, -50%, 0);
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
&__content {
|
|
margin: 0;
|
|
background-color: var(--color-background-default);
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
&__backdrop {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1040;
|
|
background-color: var(--color-overlay-alterantive);
|
|
animation-fill-mode: forwards;
|
|
animation-duration: 0.3s;
|
|
}
|
|
|
|
& > div:focus {
|
|
outline: none !important;
|
|
}
|
|
}
|