From 083d97d1e7f2f8a1a42735e0fa94b235508b69f9 Mon Sep 17 00:00:00 2001 From: qige2016 <286882998@qq.com> Date: Thu, 5 Nov 2020 16:47:46 +0800 Subject: [PATCH] fix: fix input-number error border color when it is disabled and hover in number button --- packages/theme-chalk/src/input-number.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/theme-chalk/src/input-number.scss b/packages/theme-chalk/src/input-number.scss index 4e5109cb8..f40944f0f 100644 --- a/packages/theme-chalk/src/input-number.scss +++ b/packages/theme-chalk/src/input-number.scss @@ -34,7 +34,7 @@ &:hover { color: $--color-primary; - &:not(.is-disabled) ~ .el-input .el-input__inner:not(.is-disabled) { + & ~ .el-input:not(.is-disabled) .el-input__inner { border-color: $--input-focus-border; } }