Fleet UI: Fix tabbing software view all hosts link, software status (#23144)

This commit is contained in:
RachelElysia 2024-10-25 09:34:19 -04:00 committed by GitHub
parent f16c941d89
commit 52e3fc09f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 15 deletions

View file

@ -62,7 +62,7 @@
}
}
&__status-title{
&__status-title {
display: flex;
flex-direction: column;
align-items: center;
@ -71,6 +71,13 @@
&__status-count {
font-weight: normal;
// When tabbing
&:focus-visible {
overflow: initial;
outline: 2px solid $ui-vibrant-blue-25;
box-shadow: inset 0 0 0 1px $ui-vibrant-blue-10;
}
}
&__actions-wrapper {

View file

@ -78,20 +78,6 @@
&__data-table-block {
.data-table-block {
.data-table__table {
// for showing and hiding "view all hosts" link on hover
tr {
.software-link {
opacity: 0;
transition: opacity 250ms;
}
&:hover {
.software-link {
opacity: 1;
}
}
}
thead {
.name__header {
width: $col-md;