Passwords: Improve display of show/hide toggle for touch and small-screen devices.

See #32589.


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


git-svn-id: http://core.svn.wordpress.org/trunk@33178 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Konstantin Obenland 2015-07-13 18:21:24 +00:00
parent 050e95d5ee
commit 281d2ed535
7 changed files with 73 additions and 9 deletions

View File

@ -1225,6 +1225,38 @@ table.form-table td .updated p {
width: auto;
}
/* New Password */
.wp-pwd {
position: relative;
}
.wp-pwd [type="text"],
.wp-pwd [type="password"] {
padding-left: 40px;
}
.wp-pwd button.button {
background: transparent;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
line-height: 2;
margin: 0;
padding: 5px 10px;
position: absolute;
left: 0;
top: 0;
}
.wp-pwd button.button:hover,
.wp-pwd button.button:focus,
.wp-pwd button.button:active {
background: transparent;
}
.wp-pwd .button .text {
display: none;
}
}
@media only screen and (max-height: 480px) {

View File

@ -1225,6 +1225,38 @@ table.form-table td .updated p {
width: auto;
}
/* New Password */
.wp-pwd {
position: relative;
}
.wp-pwd [type="text"],
.wp-pwd [type="password"] {
padding-right: 40px;
}
.wp-pwd button.button {
background: transparent;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
line-height: 2;
margin: 0;
padding: 5px 10px;
position: absolute;
right: 0;
top: 0;
}
.wp-pwd button.button:hover,
.wp-pwd button.button:focus,
.wp-pwd button.button:active {
background: transparent;
}
.wp-pwd .button .text {
display: none;
}
}
@media only screen and (max-height: 480px) {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-beta2-33205';
$wp_version = '4.3-beta2-33206';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.