fleet/frontend/pages/SoftwarePage/SoftwareVulnerabilities/SoftwareVulnerabilitiesTable/_styles.scss
2025-09-29 12:10:41 -05:00

44 lines
763 B
SCSS

.software-vulnerabilities-table {
&__exploited-vulnerabilities-filter {
min-width: 255px;
}
&__count {
display: flex;
gap: 12px;
align-items: center;
}
.hosts-cell__wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.vulnerabilities-hosts-link {
opacity: 0;
transition: 250ms;
}
tr:hover {
.os-hosts-link {
opacity: 1;
}
}
.table-container {
&__data-table-block {
.data-table-block {
.data-table__table {
tbody {
.link-cell {
display: inline-flex; // Inline required for underline
align-items: center;
gap: $pad-small;
}
}
}
}
}
}
}