2025-10-26 11:33:54 +01:00
|
|
|
@use "../../global/config";
|
|
|
|
|
@use "../../global/typography";
|
|
|
|
|
@use "../../functions/color" as *;
|
|
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
.table_link {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 0;
|
|
|
|
|
table-layout: auto;
|
|
|
|
|
|
|
|
|
|
tbody {
|
2025-10-26 11:33:54 +01:00
|
|
|
border-bottom: config.$border_basic;
|
2019-11-12 20:18:02 +01:00
|
|
|
|
|
|
|
|
&:hover {
|
2025-10-26 11:33:54 +01:00
|
|
|
background-color: config.$color_bright;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-21 13:35:26 +02:00
|
|
|
th,
|
|
|
|
|
td {
|
2019-11-12 20:18:02 +01:00
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell_icon {
|
|
|
|
|
width: 48px;
|
|
|
|
|
text-align: center;
|
2025-06-21 13:35:26 +02:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
img {
|
|
|
|
|
vertical-align: text-top;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell_link {
|
2025-10-26 11:33:54 +01:00
|
|
|
padding-right: config.$space_basic;
|
|
|
|
|
padding-left: config.$space_basic;
|
2019-11-12 20:18:02 +01:00
|
|
|
|
|
|
|
|
&:hover {
|
2025-10-26 11:33:54 +01:00
|
|
|
background-color: basic_color(foxtrot);
|
2025-06-21 13:35:26 +02:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
a:first-child {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2025-06-21 13:35:26 +02:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
a:last-child {
|
|
|
|
|
display: block;
|
2025-10-26 11:33:54 +01:00
|
|
|
color: config.$color_highlight_basic;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:last-child {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-21 13:35:26 +02:00
|
|
|
th:last-child,
|
|
|
|
|
.cell_date {
|
2019-11-12 20:18:02 +01:00
|
|
|
width: 16%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell_text {
|
2025-10-26 11:33:54 +01:00
|
|
|
padding-right: config.$space_basic;
|
|
|
|
|
padding-left: config.$space_basic;
|
2019-11-12 20:18:02 +01:00
|
|
|
|
|
|
|
|
div {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shorten {
|
|
|
|
|
@extend %short;
|
|
|
|
|
max-height: 44px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-06-21 13:35:26 +02:00
|
|
|
}
|