2024-01-25 18:03:44 +00:00
|
|
|
.software-os-table {
|
2024-10-16 15:02:06 +00:00
|
|
|
&__platform-dropdown {
|
2025-05-05 17:42:26 +00:00
|
|
|
width: 200px;
|
2024-10-16 15:02:06 +00:00
|
|
|
|
|
|
|
|
.Select-menu-outer {
|
|
|
|
|
width: 160px;
|
|
|
|
|
max-height: min-content;
|
|
|
|
|
|
|
|
|
|
.Select-menu {
|
|
|
|
|
max-height: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-25 18:03:44 +00:00
|
|
|
.hosts-cell__wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.os-hosts-link {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: 250ms;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tr:hover {
|
|
|
|
|
.os-hosts-link {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-container {
|
|
|
|
|
&__data-table-block {
|
|
|
|
|
.data-table-block {
|
2024-02-19 22:50:36 +00:00
|
|
|
.data-table {
|
|
|
|
|
&__wrapper {
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
}
|
|
|
|
|
&__table {
|
|
|
|
|
tbody {
|
|
|
|
|
.name_only__cell {
|
|
|
|
|
max-width: $col-md;
|
|
|
|
|
|
|
|
|
|
// Tooltip does not get cut off
|
|
|
|
|
.children-wrapper {
|
|
|
|
|
overflow: initial;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.link-cell {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: $pad-small;
|
|
|
|
|
}
|
2024-01-25 18:03:44 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|