mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
44 lines
763 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|