mirror of
https://github.com/WordPress/WordPress.git
synced 2024-10-30 15:31:04 +01:00
98595e5229
See https://make.wordpress.org/core/handbook/about/release-cycle/block-editor-release-process-for-major-releases/#package-updates-and-core-patches. See https://github.com/WordPress/wordpress-develop/pull/6902. See https://github.com/WordPress/gutenberg/tree/wp/6.6. Fixes #61497. Props ellatrix, jorbin. Built from https://develop.svn.wordpress.org/trunk@58565 git-svn-id: http://core.svn.wordpress.org/trunk@58013 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
322 B
CSS
19 lines
322 B
CSS
.wp-block-video{
|
|
box-sizing:border-box;
|
|
}
|
|
.wp-block-video video{
|
|
vertical-align:middle;
|
|
width:100%;
|
|
}
|
|
@supports (position:sticky){
|
|
.wp-block-video [poster]{
|
|
object-fit:cover;
|
|
}
|
|
}
|
|
.wp-block-video.aligncenter{
|
|
text-align:center;
|
|
}
|
|
.wp-block-video :where(figcaption){
|
|
margin-bottom:1em;
|
|
margin-top:.5em;
|
|
} |