Tabs: fix text color for disabled border-card (#10640)

pull/10645/head
杨奕 2018-04-10 11:14:10 +08:00 committed by GitHub
parent 064831de92
commit 58138613eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -163,7 +163,9 @@
if (visibility === 'hidden') {
this.focusable = false;
} else if (visibility === 'visible') {
setTimeout(() => {
this.focusable = true;
}, 50);
}
},
windowBlurHandler() {

View File

@ -227,6 +227,9 @@
&:not(.is-disabled):hover {
color: $--color-primary;
}
&.is-disabled {
color: $--disabled-color-base;
}
}
}
@include m((top, bottom)) {