From a020be4e56d07ee7d3b5a46fa7065f8577346430 Mon Sep 17 00:00:00 2001 From: WkndNite Date: Mon, 4 Nov 2024 11:31:13 +0800 Subject: [PATCH] Compatibility adjustments for IE --- src/views/login/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 25906405..ccd6dcb3 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -213,7 +213,12 @@ $cursor: #fff; color: $cursor; } } - +input[type="password"]::-ms-reveal { + display: none; /* 对于IE */ +} +input[type="password"]::-ms-clear { + display: none; /* 对于IE */ +} /* reset element-ui css */ .login-container { .el-input {