mirror of
https://github.com/fleetdm/fleet
synced 2026-05-12 03:28:48 +00:00
60 lines
1 KiB
SCSS
60 lines
1 KiB
SCSS
.software-os-table {
|
|
&__platform-dropdown {
|
|
width: 200px;
|
|
|
|
.Select-menu-outer {
|
|
width: 160px;
|
|
max-height: min-content;
|
|
|
|
.Select-menu {
|
|
max-height: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.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 {
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|