quick status hover hack

pull/44/head
kouhai dev 2022-11-06 13:32:33 -08:00
parent 0ff80581b9
commit 0bd08b1169
1 changed files with 21 additions and 16 deletions

View File

@ -293,8 +293,8 @@
}
}
.focusable {
&:focus {
@mixin focusable {
outline: 0;
background: lighten($ui-base-color, 4%);
@ -310,6 +310,11 @@
.detailed-status__action-bar {
background: lighten($ui-base-color, 8%);
}
}
.focusable {
&:focus,
&:hover {
@include focusable;
}
}