mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
Dark Mode: Swaps Colors (#13976)
This commit is contained in:
parent
b5c120c6a3
commit
9373f51e97
@ -16,7 +16,7 @@ import {
|
|||||||
export default function TransactionDetailItem({
|
export default function TransactionDetailItem({
|
||||||
detailTitle = '',
|
detailTitle = '',
|
||||||
detailText = '',
|
detailText = '',
|
||||||
detailTitleColor = COLORS.BLACK,
|
detailTitleColor = COLORS.TEXT_DEFAULT,
|
||||||
detailTotal = '',
|
detailTotal = '',
|
||||||
subTitle = '',
|
subTitle = '',
|
||||||
subText = '',
|
subText = '',
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: var(--Blue-500);
|
color: var(--text-primary-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__status-image {
|
&__status-image {
|
||||||
@ -32,13 +32,13 @@
|
|||||||
&__header {
|
&__header {
|
||||||
@include H3;
|
@include H3;
|
||||||
|
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__main-description {
|
&__main-description {
|
||||||
@include H6;
|
@include H6;
|
||||||
|
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
@ -46,7 +46,7 @@
|
|||||||
&__time-estimate {
|
&__time-estimate {
|
||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
|
||||||
@ -66,7 +66,7 @@
|
|||||||
|
|
||||||
&__view-on-etherscan,
|
&__view-on-etherscan,
|
||||||
&__support-link {
|
&__support-link {
|
||||||
color: var(--Blue-500);
|
color: var(--text-primary-color);
|
||||||
margin-top: 24px;
|
margin-top: 24px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
@ -90,7 +90,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__amount-and-symbol {
|
&__amount-and-symbol {
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
@include H5;
|
@include H5;
|
||||||
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,7 +67,7 @@
|
|||||||
&__max-button {
|
&__max-button {
|
||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
color: var(--Blue-500);
|
color: var(--text-primary-color);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -75,7 +75,7 @@
|
|||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-muted);
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
@ -84,17 +84,17 @@
|
|||||||
&--error {
|
&--error {
|
||||||
div:first-of-type {
|
div:first-of-type {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
.build-quote__form-error:first-of-type {
|
.build-quote__form-error:first-of-type {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--Red-500);
|
color: var(--color-error-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
div:last-of-type {
|
div:last-of-type {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -142,7 +142,7 @@
|
|||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
|
|
||||||
.info-tooltip {
|
.info-tooltip {
|
||||||
@ -151,7 +151,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__token-etherscan-link {
|
&__token-etherscan-link {
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -190,7 +190,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
div {
|
div {
|
||||||
border: 1px solid var(--Grey-100);
|
border: 1px solid var(--color-background-alternative);
|
||||||
border-top-left-radius: 0;
|
border-top-left-radius: 0;
|
||||||
border-bottom-left-radius: 0;
|
border-bottom-left-radius: 0;
|
||||||
border-left-color: transparent;
|
border-left-color: transparent;
|
||||||
@ -47,7 +47,7 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
|
|
||||||
&--two-lines {
|
&--two-lines {
|
||||||
right: inherit;
|
right: inherit;
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
&__token-container {
|
&__token-container {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
min-height: auto;
|
min-height: auto;
|
||||||
border: 1px solid #d6d9dc;
|
border: 1px solid var(--color-border-default);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
@ -18,8 +18,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&--open {
|
&--open {
|
||||||
box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.18); /* TODO! */
|
||||||
border: 1px solid var(--Grey-100);
|
border: 1px solid var(--color-border-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__close-area {
|
&__close-area {
|
||||||
@ -40,18 +40,18 @@
|
|||||||
transition: 200ms ease-in-out;
|
transition: 200ms ease-in-out;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border: 1px solid #d6d9dc;
|
border: 1px solid var(--color-border-default);
|
||||||
height: 60px;
|
height: 60px;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: var(--Grey-000);
|
background: var(--color-background-alternative);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__caret {
|
&__caret {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 16px;
|
right: 16px;
|
||||||
color: var(--Grey-200);
|
color: var(--color-icon-muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__selector-closed {
|
&__selector-closed {
|
||||||
@ -83,7 +83,7 @@
|
|||||||
&__closed-primary-label {
|
&__closed-primary-label {
|
||||||
@include H4;
|
@include H4;
|
||||||
|
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
@ -92,14 +92,14 @@
|
|||||||
|
|
||||||
&__search-list--open {
|
&__search-list--open {
|
||||||
box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
|
||||||
border: 1px solid var(--Grey-100);
|
border: 1px solid var(--color-border-muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__default-dropdown-icon {
|
&__default-dropdown-icon {
|
||||||
width: 34px;
|
width: 34px;
|
||||||
height: 34px;
|
height: 34px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background: var(--Grey-200);
|
background: var(--color-background-alternative);
|
||||||
flex: 0 1 auto;
|
flex: 0 1 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,18 +118,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__select-default {
|
&__select-default {
|
||||||
color: var(--Grey-200);
|
color: var(--color-text-muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__placeholder {
|
&__placeholder {
|
||||||
@include H6;
|
@include H6;
|
||||||
|
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
min-height: 300px;
|
min-height: 300px;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1002;
|
z-index: 1002;
|
||||||
background: white;
|
background: var(--color-background-default);
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
min-height: 194px;
|
min-height: 194px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -149,10 +149,10 @@
|
|||||||
padding: 16px 12px;
|
padding: 16px 12px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-top: 1px solid var(--Grey-100);
|
border-top: 1px solid var(--color-border-muted);
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
background: var(--white);
|
background: var(--color-background-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__loading-item-text-container {
|
&__loading-item-text-container {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
@include H6;
|
@include H6;
|
||||||
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__quote-link-container {
|
&__quote-link-container {
|
||||||
@ -35,13 +35,13 @@
|
|||||||
&__quote-link-text {
|
&__quote-link-text {
|
||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding-right: 4px;
|
padding-right: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__caret-right {
|
&__caret-right {
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
width: 6px;
|
width: 6px;
|
||||||
height: 6px;
|
height: 6px;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -84,7 +84,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__row-header-text--bold {
|
&__row-header-text--bold {
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__row-header-text {
|
&__row-header-text {
|
||||||
@ -147,18 +147,18 @@
|
|||||||
|
|
||||||
&__link,
|
&__link,
|
||||||
&__link:hover {
|
&__link:hover {
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__edit-link {
|
&__edit-link {
|
||||||
color: var(--Blue-500);
|
ccolor: var(--color-primary-default);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__total-box {
|
&__total-box {
|
||||||
border-top: 1px solid var(--Grey-100);
|
border-top: 1px solid var(--color-border-muted);
|
||||||
padding: 12px 16px 16px 16px;
|
padding: 12px 16px 16px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -174,13 +174,13 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__row-header-secondary,
|
&__row-header-secondary,
|
||||||
&__row-header-secondary--bold {
|
&__row-header-secondary--bold {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__row-header-secondary,
|
&__row-header-secondary,
|
||||||
@ -189,11 +189,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__row-header-primary {
|
&__row-header-primary {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__row-header-primary--bold {
|
&__row-header-primary--bold {
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__row-header-text--bold,
|
&__row-header-text--bold,
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__message {
|
&__message {
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,8 +46,8 @@
|
|||||||
|
|
||||||
@media screen and (min-width: $break-large) {
|
@media screen and (min-width: $break-large) {
|
||||||
width: 460px;
|
width: 460px;
|
||||||
background: white;
|
background: var(--color-background-default);
|
||||||
border: 1px solid var(--Grey-100);
|
border: 1px solid var(--color-border-muted);
|
||||||
box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
|
box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
height: 620px;
|
height: 620px;
|
||||||
@ -77,7 +77,7 @@
|
|||||||
@include H5;
|
@include H5;
|
||||||
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
margin-top: -5px;
|
margin-top: -5px;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -90,7 +90,7 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
padding-bottom: 16px;
|
padding-bottom: 16px;
|
||||||
background: var(--Grey-000);
|
background: var(--color-background-alternative);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@ -105,7 +105,7 @@
|
|||||||
&__header-cancel {
|
&__header-cancel {
|
||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding-right: 24px;
|
padding-right: 24px;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
@ -115,7 +115,7 @@
|
|||||||
&__header-edit {
|
&__header-edit {
|
||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding-left: 24px;
|
padding-left: 24px;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
&__quote-counter {
|
&__quote-counter {
|
||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -29,7 +29,7 @@
|
|||||||
@include H4;
|
@include H4;
|
||||||
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -123,14 +123,14 @@
|
|||||||
&__loading-bar-container {
|
&__loading-bar-container {
|
||||||
width: 248px;
|
width: 248px;
|
||||||
height: 3px;
|
height: 3px;
|
||||||
background: var(--Grey-100);
|
background: var(--color-background-alternative);
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__loading-bar {
|
&__loading-bar {
|
||||||
height: 3px;
|
height: 3px;
|
||||||
background: var(--Blue-500);
|
background: var(--color-primary-default);
|
||||||
-webkit-transition: width 0.5s linear;
|
-webkit-transition: width 0.5s linear;
|
||||||
-moz-transition: width 0.5s linear;
|
-moz-transition: width 0.5s linear;
|
||||||
-o-transition: width 0.5s linear;
|
-o-transition: width 0.5s linear;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
margin-top: 28px;
|
margin-top: 28px;
|
||||||
margin-bottom: 56px;
|
margin-bottom: 56px;
|
||||||
|
|
||||||
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
@include H6;
|
@include H6;
|
||||||
|
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__source-row {
|
&__source-row {
|
||||||
@ -53,7 +53,7 @@
|
|||||||
|
|
||||||
&__destination-row-symbol {
|
&__destination-row-symbol {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__icon,
|
&__icon,
|
||||||
@ -117,6 +117,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__exchange-rate-display {
|
&__exchange-rate-display {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
.searchable-item-list {
|
.searchable-item-list {
|
||||||
background: var(--white);
|
background: var(--color-background-default);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&__search {
|
&__search {
|
||||||
> div {
|
> div {
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid var(--Grey-100);
|
border-bottom: 1px solid var(--color-border-muted);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
height: 55px;
|
height: 55px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
@ -14,26 +14,26 @@
|
|||||||
input {
|
input {
|
||||||
@include H6;
|
@include H6;
|
||||||
|
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-default);
|
||||||
line-height: 100%;
|
line-height: 100%;
|
||||||
|
|
||||||
&::-webkit-input-placeholder {
|
&::-webkit-input-placeholder {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-muted);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:-moz-placeholder {
|
&:-moz-placeholder {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-muted);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&::-moz-placeholder {
|
&::-moz-placeholder {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-muted);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&::placeholder {
|
&::placeholder {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-muted);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -54,7 +54,7 @@
|
|||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-top: 1px solid var(--Grey-100);
|
border-top: 1px solid var(--color-border-muted);
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 50px;
|
min-height: 50px;
|
||||||
|
|
||||||
@ -68,11 +68,11 @@
|
|||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
background: var(--Grey-000);
|
background: var(--color-background-alternative);
|
||||||
}
|
}
|
||||||
|
|
||||||
&--selected {
|
&--selected {
|
||||||
border: 1px solid var(--malibu-blue) !important;
|
border: 1px solid var(--color-primary-default) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--disabled {
|
&--disabled {
|
||||||
@ -94,12 +94,12 @@
|
|||||||
|
|
||||||
&__message {
|
&__message {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
color: #037dd6;
|
color: var(--color-primary-default);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -170,7 +170,7 @@
|
|||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
line-height: 100%;
|
line-height: 100%;
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@ -185,7 +185,7 @@
|
|||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
line-height: 100%;
|
line-height: 100%;
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -194,7 +194,7 @@
|
|||||||
|
|
||||||
&__list-container {
|
&__list-container {
|
||||||
z-index: 1002;
|
z-index: 1002;
|
||||||
background: white;
|
background: var(--color-background-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__search {
|
&__search {
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
&__popover-bg {
|
&__popover-bg {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: var(--Grey-100);
|
background: var(--color-background-alternative);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
|
||||||
@media screen and (min-width: $break-large) {
|
@media screen and (min-width: $break-large) {
|
||||||
@ -58,7 +58,7 @@
|
|||||||
@include H8;
|
@include H8;
|
||||||
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
height: 43px;
|
height: 43px;
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
@ -74,7 +74,7 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: var(--black);
|
color: var(--black);
|
||||||
height: 49px;
|
height: 49px;
|
||||||
border-bottom: 1px solid var(--Grey-100);
|
border-bottom: 1px solid var(--color-background-alternative);
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
background: var(--Grey-000);
|
background: var(--Grey-000);
|
||||||
@ -82,7 +82,7 @@
|
|||||||
border: none;
|
border: none;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border: 1px solid var(--Blue-500);
|
border: 1px solid var(--color-primary-default);
|
||||||
width: 101%;
|
width: 101%;
|
||||||
padding-right: 11px;
|
padding-right: 11px;
|
||||||
padding-left: 19.5px;
|
padding-left: 19.5px;
|
||||||
@ -90,7 +90,7 @@
|
|||||||
|
|
||||||
&--no-hover {
|
&--no-hover {
|
||||||
&:hover {
|
&:hover {
|
||||||
border: 1px solid var(--Grey-100);
|
border: 1px solid var(--color-background-alternative);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-right: 12px;
|
padding-right: 12px;
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
@ -99,7 +99,7 @@
|
|||||||
|
|
||||||
&--selected {
|
&--selected {
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
background: linear-gradient(90deg, var(--Blue-500) 0%, var(--Blue-400) 101.32%);
|
background: linear-gradient(90deg, var(--color-primary-default) 0%, var(--primary-alternative) 101.32%);
|
||||||
box-shadow: 0 10px 39px rgba(3, 125, 214, 0.15);
|
box-shadow: 0 10px 39px rgba(3, 125, 214, 0.15);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
@ -107,7 +107,7 @@
|
|||||||
height: 64px;
|
height: 64px;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: linear-gradient(90deg, var(--Blue-500) 0%, var(--Blue-400) 101.32%);
|
background: linear-gradient(90deg, var(--color-primary-default) 0%, var(--color-primary-alternative) 101.32%);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
padding-right: 12px;
|
padding-right: 12px;
|
||||||
@ -118,7 +118,7 @@
|
|||||||
color: var(--white);
|
color: var(--white);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -146,7 +146,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__caret-right {
|
&__caret-right {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
width: 32px;
|
width: 32px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -160,7 +160,7 @@
|
|||||||
&:hover {
|
&:hover {
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
background: white;
|
background: white;
|
||||||
border: 1px solid var(--Blue-500);
|
border: 1px solid var(--color-primary-default);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -211,7 +211,7 @@
|
|||||||
|
|
||||||
|
|
||||||
&__receiving-symbol {
|
&__receiving-symbol {
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
width: 12px;
|
width: 12px;
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
&__detail-content {
|
&__detail-content {
|
||||||
@include H6;
|
@include H6;
|
||||||
|
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
@ -23,17 +23,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__conversion-rate {
|
&__conversion-rate {
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: inherit;
|
height: inherit;
|
||||||
|
|
||||||
.view-quote__conversion-rate-eth-label {
|
.view-quote__conversion-rate-eth-label {
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
i {
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
@ -62,7 +62,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
border-top: 1px solid var(--Grey-100);
|
border-top: 1px solid var(--color-background-alternative);
|
||||||
|
|
||||||
&--high {
|
&--high {
|
||||||
min-height: 60px;
|
min-height: 60px;
|
||||||
@ -73,7 +73,7 @@
|
|||||||
.view-quote__conversion-rate-token-label {
|
.view-quote__conversion-rate-token-label {
|
||||||
@include H6;
|
@include H6;
|
||||||
|
|
||||||
color: var(--Black-100);
|
color: var(--color-text-default);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
&__header {
|
&__header {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
@ -22,7 +22,7 @@
|
|||||||
@include H6;
|
@include H6;
|
||||||
|
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,14 +45,14 @@
|
|||||||
@include H6;
|
@include H6;
|
||||||
|
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
color: black;
|
color: var(--color-text-default);
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__error-text {
|
&__error-text {
|
||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
color: var(--Red-500);
|
color: var(--color-error-default);
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -76,34 +76,34 @@
|
|||||||
border: none;
|
border: none;
|
||||||
width: 64px;
|
width: 64px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background: var(--Blue-500);
|
background: var(--color-primary-default);
|
||||||
color: white;
|
color: var(--color-primary-inverse);
|
||||||
font-weight: inherit;
|
font-weight: inherit;
|
||||||
|
|
||||||
&::-webkit-input-placeholder { /* WebKit, Blink, Edge */
|
&::-webkit-input-placeholder { /* WebKit, Blink, Edge */
|
||||||
color: white;
|
color: var(--color-primary-inverse);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
|
&:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
|
||||||
color: white;
|
color: var(--color-primary-inverse);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&::-moz-placeholder { /* Mozilla Firefox 19+ */
|
&::-moz-placeholder { /* Mozilla Firefox 19+ */
|
||||||
color: white;
|
color: var(--color-primary-inverse);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:-ms-input-placeholder { /* Internet Explorer 10-11 */
|
&:-ms-input-placeholder { /* Internet Explorer 10-11 */
|
||||||
color: white;
|
color: var(--color-primary-inverse);
|
||||||
}
|
}
|
||||||
|
|
||||||
&::-ms-input-placeholder { /* Microsoft Edge */
|
&::-ms-input-placeholder { /* Microsoft Edge */
|
||||||
color: white;
|
color: var(--color-primary-inverse);
|
||||||
}
|
}
|
||||||
|
|
||||||
&::placeholder { /* Most modern browsers support this now. */
|
&::placeholder { /* Most modern browsers support this now. */
|
||||||
color: white;
|
color: var(--color-primary-inverse);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
&__loading-bar-container {
|
&__loading-bar-container {
|
||||||
height: 3px;
|
height: 3px;
|
||||||
background: var(--Grey-100);
|
background: var(--color-background-alternative);
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
margin-bottom: 28px;
|
margin-bottom: 28px;
|
||||||
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
&__loading-bar {
|
&__loading-bar {
|
||||||
height: 3px;
|
height: 3px;
|
||||||
background: var(--Blue-500);
|
background: var(--color-primary-default);
|
||||||
transition: width 0.5s linear;
|
transition: width 0.5s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -58,11 +58,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__support-link {
|
&__support-link {
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
margin-top: 24px;
|
margin-top: 24px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
&__bottom-text {
|
&__bottom-text {
|
||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
color: var(--Blue-500);
|
color: var(--color-primary-default);
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -73,7 +73,7 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 28px;
|
border-radius: 28px;
|
||||||
padding: 5px 18px;
|
padding: 5px 18px;
|
||||||
background: linear-gradient(90deg, var(--Blue-500) 0%, var(--Blue-400) 101.32%);
|
background: linear-gradient(90deg, var(--color-primary-default) 0%, var(--color-primary-alternative) 101.32%);
|
||||||
|
|
||||||
|
|
||||||
@media screen and (min-width: $break-large) {
|
@media screen and (min-width: $break-large) {
|
||||||
@ -122,7 +122,7 @@
|
|||||||
&.low {
|
&.low {
|
||||||
.actionable-message {
|
.actionable-message {
|
||||||
button {
|
button {
|
||||||
background: var(--Blue-500);
|
background: var(--color-primary-default);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -217,7 +217,7 @@
|
|||||||
&__metamask-rate-text {
|
&__metamask-rate-text {
|
||||||
@include H7;
|
@include H7;
|
||||||
|
|
||||||
color: var(--Grey-500);
|
color: var(--color-text-alternative);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__metamask-rate-info-icon {
|
&__metamask-rate-info-icon {
|
||||||
|
Loading…
Reference in New Issue
Block a user