Widgets: Add grey background behind image widgets.

When an image in the image widget isn't full-width, it looks like it's floating. This adds a grey background behind images to help ground them in the widget.

Props mrasharirfan.
Fixes #41630.

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


git-svn-id: http://core.svn.wordpress.org/trunk@41140 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Mel Choyce 2017-08-23 17:15:42 +00:00
parent fabca552aa
commit f10a6f8863
5 changed files with 7 additions and 3 deletions

View File

@ -92,6 +92,7 @@
}
.media-widget-control .media-widget-preview {
background: #f1f1f1;
text-align: center;
}
.media-widget-control .media-widget-preview .notice {
@ -106,6 +107,7 @@
}
.media-widget-control .media-widget-preview img {
max-width: 100%;
vertical-align: middle;
}
.media-widget-control .media-widget-preview .wp-video-shortcode {
background: #000;

File diff suppressed because one or more lines are too long

View File

@ -92,6 +92,7 @@
}
.media-widget-control .media-widget-preview {
background: #f1f1f1;
text-align: center;
}
.media-widget-control .media-widget-preview .notice {
@ -106,6 +107,7 @@
}
.media-widget-control .media-widget-preview img {
max-width: 100%;
vertical-align: middle;
}
.media-widget-control .media-widget-preview .wp-video-shortcode {
background: #000;

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.9-alpha-41308';
$wp_version = '4.9-alpha-41309';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.