quick status hover hack

kouhai/22-11-24-misc
kouhai dev 2022-11-06 13:32:33 -08:00
parent 384ac613d8
commit dd8292e53f
1 changed files with 21 additions and 16 deletions

View File

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