@@ -163,7 +163,9 @@
if (visibility === 'hidden') {
this.focusable = false;
} else if (visibility === 'visible') {
- this.focusable = true;
+ setTimeout(() => {
+ this.focusable = true;
+ }, 50);
}
},
windowBlurHandler() {
@@ -227,6 +227,9 @@
&:not(.is-disabled):hover {
color: $--color-primary;
+ &.is-disabled {
+ color: $--disabled-color-base;
+ }
@include m((top, bottom)) {