Twenty Seventeen: Provide a background color fallback for non-webkit browsers on input styles

This allows the styles to work correctly when modified by high contrast computer setups.

Props presskopp.

Fixes #38939.

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


git-svn-id: http://core.svn.wordpress.org/trunk@39328 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
David A. Kennedy 2016-11-30 23:03:43 +00:00
parent d21272ae29
commit f5dbc862df
2 changed files with 2 additions and 1 deletions

View File

@ -933,6 +933,7 @@ input[type="datetime-local"],
input[type="color"], input[type="color"],
textarea { textarea {
color: #666; color: #666;
background: #fff;
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
border: 1px solid #bbb; border: 1px solid #bbb;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.8-alpha-39386'; $wp_version = '4.8-alpha-39388';
/** /**
* 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.