About page: Use box-sizing: border-box on the password meter so pixels line up.
Also eliminates a duplicate width: 100% property. fixes #25603. Built from https://develop.svn.wordpress.org/trunk@25845 git-svn-id: http://core.svn.wordpress.org/trunk@25845 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
60ac479b9c
commit
123bb3d4f2
|
@ -5954,13 +5954,13 @@ h2 .nav-tab {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.about-wrap .about-password-meter #pass-strength-result {
|
.about-wrap .about-password-meter #pass-strength-result {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
font-size: 150%;
|
font-size: 150%;
|
||||||
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 17px 0;
|
padding: 17px 0;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue