fleet/frontend/pages/SoftwarePage/SoftwareVulnerabilities/SoftwareVulnerabilitiesTable/_styles.scss

45 lines
763 B
SCSS
Raw Normal View History

.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 {
2025-09-29 17:10:41 +00:00
display: inline-flex; // Inline required for underline
align-items: center;
gap: $pad-small;
}
}
}
}
}
}
}