mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Fleet UI: Fix tabbing software view all hosts link, software status (#23144)
This commit is contained in:
parent
f16c941d89
commit
52e3fc09f9
2 changed files with 8 additions and 15 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue