Login and Registration: Hide the Edge browser "Reveal password" native button.

Props Clorith.
Fixes #42888.

Built from https://develop.svn.wordpress.org/trunk@46372


git-svn-id: http://core.svn.wordpress.org/trunk@46171 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrea Fercia 2019-10-01 18:01:01 +00:00
parent da00051294
commit 4b939d5a93
5 changed files with 13 additions and 3 deletions

View File

@ -355,6 +355,11 @@ body.interim-login {
word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */ word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */
} }
/* Hide the Edge "reveal password" native button */
input::-ms-reveal {
display: none;
}
@-ms-viewport { @-ms-viewport {
width: device-width; width: device-width;
} }

File diff suppressed because one or more lines are too long

View File

@ -355,6 +355,11 @@ body.interim-login {
word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */ word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */
} }
/* Hide the Edge "reveal password" native button */
input::-ms-reveal {
display: none;
}
@-ms-viewport { @-ms-viewport {
width: device-width; width: device-width;
} }

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.3-beta2-46371'; $wp_version = '5.3-beta2-46372';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.