2018-12-07 03:36:11 +11:00
|
|
|
.accounts-table {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.account {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2019-04-10 00:06:30 +10:00
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
2018-12-07 03:36:11 +11:00
|
|
|
thead th {
|
|
|
|
text-align: center;
|
2020-01-27 23:44:29 +11:00
|
|
|
text-transform: uppercase;
|
2018-12-07 03:36:11 +11:00
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 700;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
&:first-child {
|
2023-03-27 19:56:25 +11:00
|
|
|
text-align: start;
|
2018-12-07 03:36:11 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody td {
|
|
|
|
padding: 15px 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody tr:last-child td {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__count {
|
|
|
|
width: 120px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $primary-text-color;
|
|
|
|
|
|
|
|
small {
|
|
|
|
display: block;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
2018-12-17 13:14:28 +11:00
|
|
|
|
2021-12-06 07:48:39 +11:00
|
|
|
tbody td.accounts-table__extra {
|
|
|
|
width: 120px;
|
2023-03-27 19:56:25 +11:00
|
|
|
text-align: end;
|
2021-12-06 07:48:39 +11:00
|
|
|
color: $darker-text-color;
|
2023-03-27 19:56:25 +11:00
|
|
|
padding-inline-end: 16px;
|
2021-12-06 07:48:39 +11:00
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
2024-07-24 01:30:45 +10:00
|
|
|
color: $highlight-text-color;
|
2021-12-06 07:48:39 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-10 00:06:30 +10:00
|
|
|
&__comment {
|
|
|
|
width: 50%;
|
|
|
|
vertical-align: initial !important;
|
|
|
|
}
|
|
|
|
|
2022-10-26 06:43:33 +11:00
|
|
|
tbody td.accounts-table__interrelationships {
|
2020-11-13 03:43:12 +11:00
|
|
|
width: 21px;
|
2023-03-27 19:56:25 +11:00
|
|
|
padding-inline-end: 16px;
|
2020-11-13 03:43:12 +11:00
|
|
|
}
|
|
|
|
|
2024-08-22 01:55:35 +10:00
|
|
|
.icon {
|
2020-11-13 03:43:12 +11:00
|
|
|
&.active {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.passive {
|
|
|
|
color: $passive-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active.passive {
|
|
|
|
color: $active-passive-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-17 13:14:28 +11:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
tbody td.optional {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|