mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
#20385 See notes on that issue for API limitations (which is why Windows and macOS are the only platforms listed). Will move out of draft after adding the changes file and tests. # Checklist for submitter - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/Committing-Changes.md#changes-files) for more information. - [x] Added/updated tests - [x] Manual QA for all new/changed functionality
66 lines
1.2 KiB
SCSS
66 lines
1.2 KiB
SCSS
.software-os-table {
|
|
&__platform-dropdown {
|
|
width: 175px;
|
|
|
|
.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;
|
|
}
|
|
|
|
// ellipsis for software name
|
|
.software-name {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
.link-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: $pad-small;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|