aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list-item/index.scss
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-08-01 10:37:38 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-08-24 07:44:44 +0800
commit5de48c67a080f2681a005e364eefb9ea1d6b1e12 (patch)
tree17d01455456cc2c8ec2fd80ded94e1e9e3391cd7 /ui/app/components/transaction-list-item/index.scss
parent01f00a9ca6807dd019a68bf2be8d99cee67a2738 (diff)
downloadtangerine-wallet-browser-5de48c67a080f2681a005e364eefb9ea1d6b1e12.tar
tangerine-wallet-browser-5de48c67a080f2681a005e364eefb9ea1d6b1e12.tar.gz
tangerine-wallet-browser-5de48c67a080f2681a005e364eefb9ea1d6b1e12.tar.bz2
tangerine-wallet-browser-5de48c67a080f2681a005e364eefb9ea1d6b1e12.tar.lz
tangerine-wallet-browser-5de48c67a080f2681a005e364eefb9ea1d6b1e12.tar.xz
tangerine-wallet-browser-5de48c67a080f2681a005e364eefb9ea1d6b1e12.tar.zst
tangerine-wallet-browser-5de48c67a080f2681a005e364eefb9ea1d6b1e12.zip
Use css grid for TransactionListItem for responsive layout
Diffstat (limited to 'ui/app/components/transaction-list-item/index.scss')
-rw-r--r--ui/app/components/transaction-list-item/index.scss81
1 files changed, 52 insertions, 29 deletions
diff --git a/ui/app/components/transaction-list-item/index.scss b/ui/app/components/transaction-list-item/index.scss
index 8a3973f92..b93edebcc 100644
--- a/ui/app/components/transaction-list-item/index.scss
+++ b/ui/app/components/transaction-list-item/index.scss
@@ -1,41 +1,51 @@
.transaction-list-item {
box-sizing: border-box;
- height: 74px;
- padding: 0 21px;
- display: flex;
- flex-direction: row;
- align-items: center;
+ min-height: 74px;
+ padding: 8px 20px;
+ display: grid;
+ grid-template-columns: 45px 1fr 1fr 1fr;
+ grid-template-areas:
+ "identicon action status primary-amount"
+ "identicon nonce status secondary-amount";
border-bottom: 1px solid $geyser;
cursor: pointer;
@media screen and (max-width: $break-small) {
- padding: 0 12px;
+ padding: 8px 20px 12px;
+ grid-template-columns: 45px 5fr 3fr;
+ grid-template-areas:
+ "nonce nonce nonce"
+ "identicon action primary-amount"
+ "identicon status secondary-amount";
}
- &__identicon-wrapper {
- padding-top: 2px;
- }
-
- &__action-block {
- padding: 0 8px 0 12px;
- width: 180px;
+ &__identicon {
+ grid-area: identicon;
+ grid-row: 1 / span 2;
+ align-self: center;
@media screen and (max-width: $break-small) {
- padding: 0 8px;
- width: 160px;
+ grid-row: 2 / span 2;
}
}
&__action {
text-transform: capitalize;
- padding-bottom: 2px;
+ padding: 0 8px 2px 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
+ grid-area: action;
+ align-self: end;
+ }
+
+ &__status {
+ grid-area: status;
+ grid-row: 1 / span 2;
+ align-self: center;
@media screen and (max-width: $break-small) {
- padding-bottom: 0;
- font-size: .875rem;
+ grid-row: 3;
}
}
@@ -45,25 +55,38 @@
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
- }
+ grid-area: nonce;
+ align-self: start;
- &__transaction-amounts {
- flex: 1;
+ @media screen and (max-width: $break-small) {
+ padding-bottom: 4px;
+ }
}
- &__primary-transaction-amount {
- text-align: end;
+ &__amount {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
- @media screen and (max-width: $break-small) {
+ &--primary {
+ text-align: end;
+ grid-area: primary-amount;
+ align-self: end;
+
+ @media screen and (max-width: $break-small) {
+ padding-bottom: 2px;
+ }
+ }
+
+ &--secondary {
+ text-align: end;
font-size: .75rem;
+ color: #5e6064;
+ grid-area: secondary-amount;
+ align-self: start;
}
}
- &__secondary-transaction-amount {
- text-align: end;
- font-size: .75rem;
- color: #5e6064;
- }
&:hover {
background: rgba($alto, .2);