Commit 58138613 authored by 杨奕's avatar 杨奕 Committed by GitHub

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

parent 064831de
......@@ -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)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment