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

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


git-svn-id: http://core.svn.wordpress.org/trunk@29142 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2014-08-03 00:34:15 +00:00
parent 5be014c7c9
commit 9662dc9f7b
15 changed files with 21 additions and 21 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

@ -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

@ -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 0 16px 6px;
@ -267,4 +266,4 @@ body.interim-login {
font: normal 21px/1 'dashicons';
margin: -3px -4px 0 0;
}
}
}

File diff suppressed because one or more lines are too long

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;
}
}
}

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

@ -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;
}

File diff suppressed because one or more lines are too long

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;
}

File diff suppressed because one or more lines are too long

View File

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