Fix CSS for form elements for Firefox 30+, fixes #28500.

git-svn-id: https://develop.svn.wordpress.org/trunk@29366 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2014-08-03 00:33:31 +00:00
parent 2c320cc7f3
commit a1ce4931a1
4 changed files with 7 additions and 7 deletions

View File

@ -873,7 +873,6 @@ h3:hover .edit-box {
#title-wrap #title {
padding: 2px 6px;
font-size: 1.3em;
line-height: 100%;
outline: none;
}

View File

@ -145,7 +145,6 @@ input,
select {
font-size: 14px;
padding: 3px 5px;
line-height: 15px;
-webkit-border-radius: 0;
border-radius: 0; /* Reset mobile webkit's default element styling */
}
@ -866,6 +865,10 @@ table.form-table td .updated {
box-sizing: border-box;
}
#wpbody .form-table td select {
height: 40px;
}
input[type=text].small-text,
input[type=search].small-text,
input[type=password].small-text,

View File

@ -186,7 +186,6 @@ p {
.login form .input,
.login input[type="text"] {
font-size: 24px;
line-height: 1;
width: 100%;
padding: 3px;
margin: 2px 6px 16px 0;
@ -267,4 +266,4 @@ body.interim-login {
font: normal 21px/1 'dashicons';
margin: -3px 0 0 -4px;
}
}
}

View File

@ -67,9 +67,8 @@ TABLE OF CONTENTS:
.wp-core-ui input[type="reset"]::-moz-focus-inner,
.wp-core-ui input[type="button"]::-moz-focus-inner,
.wp-core-ui input[type="submit"]::-moz-focus-inner {
border-width: 1px 0;
border-style: solid none;
border-color: transparent;
border-width: 0;
border-style: none;
padding: 0;
}