From f4e3c2503511109f53443282d6ccfc13b449c4f5 Mon Sep 17 00:00:00 2001 From: Ryan Wang Date: Sun, 29 Sep 2024 15:11:46 +0800 Subject: [PATCH] feat: remove the button for viewing passwords in the Edge browser (#6727) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What type of PR is this? /area core /kind improvement /milestone 2.20.x #### What this PR does / why we need it: 移除在 Edge 浏览器中,为密码输入框添加显示密码明文按钮。 image #### Does this PR introduce a user-facing change? ```release-note None ``` --- application/src/main/resources/static/styles/main.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/application/src/main/resources/static/styles/main.css b/application/src/main/resources/static/styles/main.css index 9d062b000..b449f94f9 100644 --- a/application/src/main/resources/static/styles/main.css +++ b/application/src/main/resources/static/styles/main.css @@ -408,3 +408,7 @@ flex-direction: column; } } + +::-ms-reveal { + display: none; +} \ No newline at end of file