mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-05 07:58:35 +01:00
699ea88e6c
Updates the versions from the [a74a70ed20
released packages] for the following bugfixes:
* [https://github.com/WordPress/gutenberg/pull/63980 Global Styles: Fix block custom CSS pseudo element selectors]
* [https://github.com/WordPress/gutenberg/pull/64463 Featured Image Block: Reduce CSS specificity]
* [https://github.com/WordPress/gutenberg/pull/64076 Fix bumped specificity for layout styles in non-iframed editor]
* [https://github.com/WordPress/gutenberg/pull/64379 Don't allow duplicating template parts in non-block-based themes]
* [https://github.com/WordPress/gutenberg/pull/64250 Data Views: Don't render action modal when there are no eligible items]
* [https://github.com/WordPress/gutenberg/pull/63724 Fix canvas issues by removing VisualEditor’s height]
* [https://github.com/WordPress/gutenberg/pull/64992 Post Editor: fix click space after post content to append]
* [https://github.com/WordPress/gutenberg/pull/63939 Post Editor: Prevent popover from being hidden by metabox]
* [https://github.com/WordPress/gutenberg/pull/64639 Post editor: apply space below content using a pseudo-element instead of padding-bottom]
* [https://github.com/WordPress/gutenberg/pull/64015 Avoid errors for post types without a 'menu_icon']
* [https://github.com/WordPress/gutenberg/pull/64458 Update postcss-prefixwrap dependency to 1.51.0 to fix prefixing in :where selectors]
Props vcanales.
Fixes #61982.
See #61704, #61769, #61829.
Built from https://develop.svn.wordpress.org/trunk@58988
git-svn-id: http://core.svn.wordpress.org/trunk@58384 1a063a9b-81f0-0310-95a4-ce76da25c4cd
66 lines
1.9 KiB
CSS
66 lines
1.9 KiB
CSS
.wp-block-post-featured-image{
|
|
margin-left:0;
|
|
margin-right:0;
|
|
}
|
|
.wp-block-post-featured-image a{
|
|
display:block;
|
|
height:100%;
|
|
}
|
|
.wp-block-post-featured-image :where(img){
|
|
box-sizing:border-box;
|
|
height:auto;
|
|
max-width:100%;
|
|
vertical-align:bottom;
|
|
width:100%;
|
|
}
|
|
.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{
|
|
width:100%;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim{
|
|
background-color:#000;
|
|
inset:0;
|
|
position:absolute;
|
|
}
|
|
.wp-block-post-featured-image{
|
|
position:relative;
|
|
}
|
|
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient{
|
|
background-color:initial;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0{
|
|
opacity:0;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10{
|
|
opacity:.1;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20{
|
|
opacity:.2;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30{
|
|
opacity:.3;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40{
|
|
opacity:.4;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50{
|
|
opacity:.5;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60{
|
|
opacity:.6;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70{
|
|
opacity:.7;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80{
|
|
opacity:.8;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90{
|
|
opacity:.9;
|
|
}
|
|
.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100{
|
|
opacity:1;
|
|
}
|
|
.wp-block-post-featured-image:where(.alignleft,.alignright){
|
|
width:100%;
|
|
} |