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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-wrapper {
|
|
|
|
flex: 0 0 55px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-header {
|
|
|
|
font-size: 16px;
|
2017-08-31 09:28:45 +02:00
|
|
|
margin: 1.5em 2.37em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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) {
|
2017-09-14 10:09:57 +02:00
|
|
|
padding-bottom: 12px;
|
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 {
|
2017-08-14 10:31:27 +02:00
|
|
|
flex: 1 1 auto;
|
2017-08-11 07:47:56 +02:00
|
|
|
|
2017-08-11 07:16:42 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
2017-08-14 10:31:27 +02:00
|
|
|
|
2017-08-11 07:16:42 +02:00
|
|
|
@media screen and (min-width: $break-large) {
|
2017-09-14 10:09:57 +02:00
|
|
|
margin-top: 12px;
|
2017-08-11 07:16:42 +02:00
|
|
|
}
|
2017-08-11 04:55:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tx-list-content-wrapper {
|
2017-08-11 05:52:22 +02:00
|
|
|
align-items: stretch;
|
2017-08-31 09:28:45 +02:00
|
|
|
margin-bottom: 4px;
|
|
|
|
margin-top: 2px;
|
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 {
|
2017-10-19 23:08:52 +02:00
|
|
|
font-size: 14px !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;
|
2017-10-19 23:08:52 +02:00
|
|
|
line-height: 16px;
|
2017-09-14 04:57:33 +02: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;
|
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;
|
|
|
|
}
|
2017-08-11 04:55:01 +02:00
|
|
|
}
|
|
|
|
|
2017-09-07 12:14:53 +02:00
|
|
|
.tx-list-item {
|
|
|
|
border-top: 1px solid rgb(231, 231, 231);
|
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) {
|
|
|
|
margin: 0 2.37em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&: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 {
|
|
|
|
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;
|
|
|
|
}
|