Feature Image: Improve the preview for transparent background images by using CSS3 to show a checkered background.
Props metodiew. Fixes #33299. Built from https://develop.svn.wordpress.org/trunk@34634 git-svn-id: http://core.svn.wordpress.org/trunk@34598 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7bc7ea0076
commit
1c74c7108f
|
@ -291,6 +291,9 @@ ul.wp-tab-bar li {
|
|||
max-width: 100%;
|
||||
height: auto;
|
||||
width: auto;
|
||||
background-image: linear-gradient(-45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
|
||||
background-position: 100% 0, 10px 10px;
|
||||
background-size: 20px 20px;
|
||||
}
|
||||
|
||||
form#tags-filter {
|
||||
|
|
|
@ -291,6 +291,9 @@ ul.wp-tab-bar li {
|
|||
max-width: 100%;
|
||||
height: auto;
|
||||
width: auto;
|
||||
background-image: linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
|
||||
background-position: 0 0, 10px 10px;
|
||||
background-size: 20px 20px;
|
||||
}
|
||||
|
||||
form#tags-filter {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34633';
|
||||
$wp_version = '4.4-alpha-34634';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue