2019-02-13 17:27:20 +01:00
|
|
|
@import '~@lbry/components/sass/table/_index.scss';
|
2018-03-26 23:32:43 +02:00
|
|
|
|
2019-03-21 16:22:23 +01:00
|
|
|
table,
|
2019-02-13 17:27:20 +01:00
|
|
|
.table {
|
|
|
|
[data-mode='dark'] & {
|
|
|
|
background-color: transparent;
|
2018-12-19 06:44:53 +01:00
|
|
|
|
2019-02-13 17:27:20 +01:00
|
|
|
th {
|
|
|
|
border-bottom: 2px solid $lbry-white;
|
2018-12-19 06:44:53 +01:00
|
|
|
}
|
2018-09-07 07:24:54 +02:00
|
|
|
}
|
2019-02-13 17:27:20 +01:00
|
|
|
}
|
2018-09-07 07:24:54 +02:00
|
|
|
|
2019-02-13 17:27:20 +01:00
|
|
|
.table__item--actionable {
|
|
|
|
.button svg {
|
|
|
|
top: 3px;
|
2016-08-08 06:47:48 +02:00
|
|
|
}
|
2016-08-27 16:12:56 +02:00
|
|
|
}
|
|
|
|
|
2018-12-19 06:44:53 +01:00
|
|
|
.table--help {
|
|
|
|
td:nth-of-type(1) {
|
|
|
|
font-weight: 600;
|
|
|
|
min-width: 130px;
|
|
|
|
}
|
2017-09-18 02:52:57 +02:00
|
|
|
|
2018-12-19 06:44:53 +01:00
|
|
|
td:nth-of-type(2) {
|
2019-02-13 17:27:20 +01:00
|
|
|
@include constrict(20vw);
|
2018-06-26 17:21:30 +02:00
|
|
|
}
|
2018-12-19 06:44:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.table--transactions {
|
2019-05-13 08:05:38 +02:00
|
|
|
table-layout: fixed;
|
|
|
|
|
2018-12-19 06:44:53 +01:00
|
|
|
td:nth-of-type(1) {
|
2019-01-14 19:40:06 +01:00
|
|
|
// TX amounts
|
2019-01-14 22:21:37 +01:00
|
|
|
font-size: 0.9em;
|
2019-01-14 19:40:06 +01:00
|
|
|
font-weight: 600;
|
2017-12-21 18:32:51 +01:00
|
|
|
}
|
2018-10-17 00:29:55 +02:00
|
|
|
|
2018-12-19 06:44:53 +01:00
|
|
|
td:nth-of-type(3) {
|
2019-05-13 08:05:38 +02:00
|
|
|
// Only add ellipsis to the links in the table
|
|
|
|
// We still want to show the entire message if a TX includes one
|
|
|
|
.button__content {
|
|
|
|
@include constrict(10rem);
|
|
|
|
vertical-align: bottom;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2018-12-19 06:44:53 +01:00
|
|
|
}
|
2017-10-03 19:27:52 +02:00
|
|
|
}
|
2019-01-16 17:16:38 +01:00
|
|
|
|
|
|
|
.table--rewards {
|
|
|
|
td:nth-of-type(1) {
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
td:nth-of-type(2) {
|
|
|
|
width: 17.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
td:nth-of-type(3) {
|
|
|
|
width: 17.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
td:nth-of-type(4) {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
}
|
2019-02-04 18:45:30 +01:00
|
|
|
|
|
|
|
.table--invites {
|
|
|
|
svg {
|
|
|
|
margin-bottom: -2px;
|
|
|
|
margin-left: var(--spacing-vertical-small);
|
|
|
|
}
|
|
|
|
}
|