You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
3.1 KiB
146 lines
3.1 KiB
7 years ago
|
.transactions {
|
||
7 years ago
|
@extend %paper;
|
||
|
|
||
|
&__container {
|
||
|
padding: explorer-size(-1) explorer-size(0);
|
||
|
& + & { padding-top: 0; }
|
||
|
&--title { padding-top: explorer-size(0); }
|
||
|
}
|
||
|
|
||
7 years ago
|
&__headline-title,
|
||
7 years ago
|
&__title {
|
||
7 years ago
|
@include explorer-typography("title");
|
||
7 years ago
|
color: explorer-color("slate", "900");
|
||
7 years ago
|
}
|
||
|
|
||
7 years ago
|
&__title { margin: 0; }
|
||
7 years ago
|
|
||
7 years ago
|
&__table {
|
||
7 years ago
|
@extend %table;
|
||
|
@include explorer-typography("body1");
|
||
7 years ago
|
color: explorer-color("slate", "900");
|
||
|
|
||
|
& > thead > tr > th.transactions__column-header--status {
|
||
|
border-bottom: 0 none;
|
||
|
}
|
||
7 years ago
|
}
|
||
7 years ago
|
|
||
7 years ago
|
&__column-header { @include explorer-typography("body1"); }
|
||
7 years ago
|
&__column-title {
|
||
|
&--status { display: none; }
|
||
|
}
|
||
7 years ago
|
&__link {
|
||
|
color: explorer-color("blue", "500");
|
||
|
|
||
|
&--truncated {
|
||
|
display: inline-block;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
7 years ago
|
&--next-page {
|
||
|
@include explorer-typography("body1");
|
||
|
display: block;
|
||
|
text-align: center;
|
||
|
padding: explorer-size(-1) 0;
|
||
7 years ago
|
border-top: 1px solid explorer-color("slate", "50");
|
||
7 years ago
|
}
|
||
|
|
||
7 years ago
|
&--long-hash { max-width: explorer-size(2); }
|
||
|
&--hash { max-width: explorer-size(2); }
|
||
|
}
|
||
7 years ago
|
|
||
|
&__pagination {
|
||
|
margin: explorer-size(-1) 0 explorer-size(-2) 0;
|
||
|
.pagination { text-align: right; }
|
||
|
}
|
||
|
|
||
7 years ago
|
&__column-header {
|
||
|
&--optional { display: none; }
|
||
|
}
|
||
7 years ago
|
|
||
7 years ago
|
&__column {
|
||
7 years ago
|
&--status {
|
||
|
width: explorer-size(-1);
|
||
|
text-align: center;
|
||
|
}
|
||
7 years ago
|
&--optional { display: none; }
|
||
|
}
|
||
7 years ago
|
|
||
|
&__tabs { @extend %section-tabs; }
|
||
|
|
||
|
&__tab {
|
||
|
@extend %section-tabs__tab;
|
||
|
&--active { @extend %section-tabs__tab--active; }
|
||
|
}
|
||
|
|
||
|
&__tab-link {
|
||
|
color: explorer-color("blue", "500");
|
||
|
text-decoration: none;
|
||
7 years ago
|
&--active { color: explorer-color("slate", "900"); }
|
||
7 years ago
|
}
|
||
7 years ago
|
|
||
|
&__hash-container { height: 1rem; }
|
||
7 years ago
|
|
||
7 years ago
|
&__dot {
|
||
|
@extend %dot;
|
||
|
vertical-align: baseline;
|
||
|
&--pending { @extend %dot--pending; }
|
||
|
&--success { @extend %dot--succeeded; }
|
||
|
&--failed { @extend %dot--failed; }
|
||
|
&--out_of_gas { @extend %dot--warned; }
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|
||
|
|
||
|
@media (min-width: $explorer-breakpoint-sm) {
|
||
|
.transactions {
|
||
7 years ago
|
&__link {
|
||
|
&--long-hash { max-width: explorer-size(3); }
|
||
|
&--hash { max-width: explorer-size(1); }
|
||
7 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: $explorer-breakpoint-md) {
|
||
|
.transactions {
|
||
|
&__headline {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
&__headline-title { flex: 1; }
|
||
|
&__pagination {
|
||
|
margin: explorer-size(-1) 0 explorer-size(-2) 0;
|
||
|
}
|
||
7 years ago
|
&__link {
|
||
|
&--long-hash { max-width: explorer-size(4); }
|
||
|
&--hash { max-width: explorer-size(3); }
|
||
|
}
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|
||
|
|
||
|
@media (min-width: $explorer-breakpoint-lg) {
|
||
|
.transactions {
|
||
7 years ago
|
&__link {
|
||
|
&--long-hash { max-width: explorer-size(5); }
|
||
|
&--hash { max-width: explorer-size(4); }
|
||
|
}
|
||
7 years ago
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: $explorer-breakpoint-xl) {
|
||
|
.transactions {
|
||
7 years ago
|
&__column-header {
|
||
|
&--optional { display: table-cell; }
|
||
|
}
|
||
|
&__column {
|
||
|
&--optional { display: table-cell; }
|
||
|
}
|
||
7 years ago
|
&__link {
|
||
|
&--long-hash { max-width: explorer-size(5); }
|
||
|
&--hash { max-width: explorer-size(4); }
|
||
|
}
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|