2017-08-11 07:47:56 +02:00
|
|
|
.tx-list-container {
|
|
|
|
height: 87.5%;
|
2017-08-14 10:31:27 +02:00
|
|
|
|
2017-08-11 07:47:56 +02:00
|
|
|
@media screen and (min-width: $break-large) {
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-16 20:58:02 +01:00
|
|
|
.tx-list-header-wrapper {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
2017-08-31 03:03:32 +02:00
|
|
|
.tx-list-header {
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
2017-08-11 07:47:56 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
.tx-list-header-wrapper {
|
2017-08-14 10:31:27 +02:00
|
|
|
margin-top: .2em;
|
|
|
|
margin-bottom: .6em;
|
2017-08-11 09:42:44 +02:00
|
|
|
// TODO: Resolve Layout Conflicst in Wallet View
|
|
|
|
// - This fixes txlist "transactions" title dispay
|
|
|
|
// margin-top: 0.2em;
|
|
|
|
// margin-bottom: 0.6em;
|
2017-08-11 07:47:56 +02:00
|
|
|
justify-content: center;
|
2017-10-19 23:08:52 +02:00
|
|
|
flex: 0 0 auto;
|
2017-08-11 07:47:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-header {
|
|
|
|
align-self: center;
|
|
|
|
font-size: 12px;
|
|
|
|
color: $dusty-gray;
|
2017-10-19 23:08:52 +02:00
|
|
|
font-family: Roboto;
|
|
|
|
text-transform: uppercase;
|
2017-08-11 07:47:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
|
|
.tx-list-header {
|
|
|
|
font-size: 16px;
|
2018-01-11 06:09:09 +01:00
|
|
|
margin: 1.1em 2.37em .8em;
|
2017-08-31 09:28:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-container::-webkit-scrollbar {
|
2017-09-14 04:57:33 +02:00
|
|
|
display: none;
|
2017-08-11 07:47:56 +02:00
|
|
|
}
|
2017-08-11 05:52:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-content-divider {
|
|
|
|
height: 1px;
|
|
|
|
background: rgb(231, 231, 231);
|
|
|
|
flex: 0 0 1px;
|
|
|
|
|
2017-08-11 07:47:56 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2017-08-14 10:31:27 +02:00
|
|
|
margin: .1em 0;
|
2017-08-11 07:47:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: $break-large) {
|
2017-08-31 09:28:45 +02:00
|
|
|
margin: .1em 2.37em;
|
2017-08-11 07:47:56 +02:00
|
|
|
}
|
2017-08-11 05:52:22 +02:00
|
|
|
}
|
|
|
|
|
2017-08-11 04:55:01 +02:00
|
|
|
.tx-list-item-wrapper {
|
2017-09-14 04:57:33 +02:00
|
|
|
flex: 1 1 auto;
|
|
|
|
width: 0;
|
2017-08-11 04:55:01 +02:00
|
|
|
align-items: stretch;
|
2017-08-11 05:52:22 +02:00
|
|
|
justify-content: flex-start;
|
2017-09-14 04:57:33 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
2017-08-30 12:33:00 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
2017-10-19 23:08:52 +02:00
|
|
|
padding: 0 1.3em .8em;
|
2017-08-30 12:33:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: $break-large) {
|
2018-01-18 05:08:29 +01:00
|
|
|
padding-bottom: 8px;
|
2017-08-30 12:33:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-07 18:18:13 +02:00
|
|
|
.tx-list-clickable {
|
2017-08-30 12:33:00 +02:00
|
|
|
cursor: pointer;
|
|
|
|
|
2017-09-06 14:09:04 +02:00
|
|
|
&:hover {
|
|
|
|
background: rgba($alto, .2);
|
|
|
|
}
|
2017-08-11 04:55:01 +02:00
|
|
|
}
|
|
|
|
|
2017-09-07 18:18:13 +02:00
|
|
|
.tx-list-pending-item-container {
|
|
|
|
cursor: pointer;
|
2017-09-14 10:09:57 +02:00
|
|
|
opacity: .5;
|
2017-09-07 18:18:13 +02:00
|
|
|
}
|
|
|
|
|
2017-08-11 04:55:01 +02:00
|
|
|
.tx-list-date-wrapper {
|
2018-01-18 05:08:29 +01:00
|
|
|
margin-top: 6px;
|
2017-08-14 10:31:27 +02:00
|
|
|
flex: 1 1 auto;
|
2017-08-11 04:55:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-content-wrapper {
|
2017-08-11 05:52:22 +02:00
|
|
|
align-items: stretch;
|
2018-03-20 12:32:20 +01:00
|
|
|
margin: 4px 0;
|
2017-09-14 04:57:33 +02:00
|
|
|
flex: 1 0 auto;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
|
|
.tx-list-status {
|
2018-01-18 05:08:29 +01:00
|
|
|
font-size: 12px !important;
|
2017-09-14 04:57:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-account {
|
|
|
|
font-size: 14px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-value {
|
|
|
|
font-size: 14px;
|
2017-10-19 23:08:52 +02:00
|
|
|
line-height: 18px;
|
2017-09-14 04:57:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-fiat-value {
|
|
|
|
font-size: 12px;
|
2018-01-18 05:08:29 +01:00
|
|
|
line-height: 22px;
|
2017-09-14 04:57:33 +02:00
|
|
|
}
|
|
|
|
}
|
2017-08-11 04:55:01 +02:00
|
|
|
}
|
|
|
|
|
2018-03-08 20:42:25 +01:00
|
|
|
.tx-list-item-retry-container {
|
|
|
|
background: #d1edff;
|
|
|
|
width: 100%;
|
2018-07-17 02:09:57 +02:00
|
|
|
border-radius: 12px;
|
|
|
|
font-size: .75rem;
|
2018-03-08 20:42:25 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-left: 44px;
|
|
|
|
width: calc(100% - 44px);
|
2018-07-17 02:09:57 +02:00
|
|
|
padding: 4px;
|
|
|
|
cursor: pointer;
|
2018-03-08 20:42:25 +01:00
|
|
|
|
|
|
|
@media screen and (min-width: 576px) and (max-width: 679px) {
|
|
|
|
flex-flow: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 380px) and (max-width: 575px) {
|
|
|
|
flex-flow: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 379px) {
|
|
|
|
flex-flow: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-item-retry-link {
|
|
|
|
text-decoration: underline;
|
|
|
|
margin-left: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
@media screen and (min-width: 576px) and (max-width: 679px) {
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 380px) and (max-width: 575px) {
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 379px) {
|
|
|
|
margin-left: 0px;
|
2018-03-20 16:58:59 +01:00
|
|
|
text-align: center;
|
2018-03-08 20:42:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-11 04:55:01 +02:00
|
|
|
.tx-list-date {
|
|
|
|
color: $dusty-gray;
|
2017-08-31 09:28:45 +02:00
|
|
|
font-size: 12px;
|
2017-10-13 00:46:09 +02:00
|
|
|
font-family: Roboto;
|
2017-08-11 04:55:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-identicon-wrapper {
|
2017-08-11 05:52:22 +02:00
|
|
|
align-self: center;
|
2017-09-07 12:14:53 +02:00
|
|
|
flex: 0 0 auto;
|
|
|
|
margin-right: 16px;
|
2018-03-20 12:32:20 +01:00
|
|
|
display: flex;
|
2017-08-11 04:55:01 +02:00
|
|
|
}
|
|
|
|
|
2017-08-11 07:16:42 +02:00
|
|
|
.tx-list-account-and-status-wrapper {
|
|
|
|
display: flex;
|
2017-09-14 04:57:33 +02:00
|
|
|
flex: 1 1 auto;
|
2017-09-14 10:09:57 +02:00
|
|
|
flex-flow: row wrap;
|
2017-09-14 04:57:33 +02:00
|
|
|
width: 0;
|
2017-08-11 05:52:22 +02:00
|
|
|
|
2017-08-11 07:16:42 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: flex-start;
|
|
|
|
align-self: center;
|
2017-10-19 23:08:52 +02:00
|
|
|
|
|
|
|
.tx-list-account-wrapper {
|
|
|
|
height: 18px;
|
|
|
|
|
|
|
|
.tx-list-account {
|
|
|
|
line-height: 14px;
|
|
|
|
}
|
|
|
|
}
|
2017-08-11 07:16:42 +02:00
|
|
|
}
|
2017-08-11 04:55:01 +02:00
|
|
|
|
2017-08-11 07:16:42 +02:00
|
|
|
@media screen and (min-width: $break-large) {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
2017-08-11 04:55:01 +02:00
|
|
|
|
2017-08-11 07:16:42 +02:00
|
|
|
.tx-list-account-wrapper {
|
2017-08-31 09:28:45 +02:00
|
|
|
flex: 1.3 2 auto;
|
2017-09-07 12:14:53 +02:00
|
|
|
min-width: 153px;
|
2017-08-11 07:16:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-status-wrapper {
|
|
|
|
flex: 6 6 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-account {
|
|
|
|
font-size: 16px;
|
2017-08-31 09:28:45 +02:00
|
|
|
color: $scorpion;
|
2017-08-11 07:16:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-status {
|
|
|
|
color: $dusty-gray;
|
|
|
|
font-size: 16px;
|
2017-08-31 03:03:32 +02:00
|
|
|
text-transform: capitalize;
|
2017-08-11 07:16:42 +02:00
|
|
|
}
|
2017-09-12 23:59:33 +02:00
|
|
|
|
2017-09-14 10:09:57 +02:00
|
|
|
.tx-list-status--rejected,
|
|
|
|
.tx-list-status--failed {
|
2017-09-12 23:59:33 +02:00
|
|
|
color: $monzo;
|
|
|
|
}
|
2018-03-14 00:41:50 +01:00
|
|
|
|
|
|
|
.tx-list-status--dropped {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2017-08-11 04:55:01 +02:00
|
|
|
}
|
|
|
|
|
2017-09-07 12:14:53 +02:00
|
|
|
.tx-list-item {
|
2018-08-06 23:08:00 +02:00
|
|
|
border-bottom: 1px solid $geyser;
|
2017-09-14 04:57:33 +02:00
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
2017-08-11 05:52:22 +02:00
|
|
|
|
2017-09-07 12:14:53 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2017-09-14 04:57:33 +02:00
|
|
|
// margin: 0 1.3em .95em; !important
|
2017-08-11 07:16:42 +02:00
|
|
|
}
|
2017-08-11 05:52:22 +02:00
|
|
|
|
2017-09-07 12:14:53 +02:00
|
|
|
@media screen and (min-width: $break-large) {
|
2018-01-11 18:21:41 +01:00
|
|
|
padding: 0 2.37em;
|
2017-09-07 12:14:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
border-bottom: 1px solid rgb(231, 231, 231);
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__wrapper {
|
|
|
|
align-self: center;
|
|
|
|
flex: 2 2 auto;
|
|
|
|
color: $dusty-gray;
|
|
|
|
|
|
|
|
.tx-list-value {
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2017-09-12 23:59:33 +02:00
|
|
|
.tx-list-value--confirmed {
|
|
|
|
color: $caribbean-green;
|
|
|
|
}
|
|
|
|
|
2017-09-07 12:14:53 +02:00
|
|
|
.tx-list-fiat-value {
|
|
|
|
font-size: 12px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--empty {
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: none !important;
|
|
|
|
padding: 16px;
|
2017-08-11 07:16:42 +02:00
|
|
|
}
|
2017-08-14 10:31:27 +02:00
|
|
|
}
|
2017-09-12 23:59:33 +02:00
|
|
|
|
2017-09-14 04:57:33 +02:00
|
|
|
.tx-list-details-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
flex: 0 0 35%;
|
|
|
|
}
|
|
|
|
|
2017-09-12 23:59:33 +02:00
|
|
|
.tx-list-value {
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: right;
|
2017-09-14 04:57:33 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-fiat-value {
|
2018-01-18 05:08:29 +01:00
|
|
|
font-size: 12px;
|
|
|
|
line-height: initial;
|
2017-09-14 04:57:33 +02:00
|
|
|
text-align: right;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2017-09-12 23:59:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-value--confirmed {
|
|
|
|
color: $caribbean-green;
|
|
|
|
}
|