Twenty Twenty: Calendar and Table blocks do not apply custom font size.

This fixes adding a custom font size to a Calendar and Table block. This was only an issue for custom font size entering.

Props nidhidhandhukiya, yurajsinj2211, ankit-k-gupta, anveshika, sabernhardt, darshitrajyaguru97, shailu25, umesh84, SergeyBiryukov.
Fixes #59996, #56157.

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


git-svn-id: http://core.svn.wordpress.org/trunk@58215 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Tammie Lister 2024-07-27 16:43:15 +00:00
parent 9c5b1391d7
commit 3bab2c9131
3 changed files with 19 additions and 1 deletions

View File

@ -3041,6 +3041,15 @@ ol.wp-block-latest-comments {
letter-spacing: inherit;
}
/* Block: Calendar --------------------------- */
.wp-block-calendar[class*="-font-size"] table,
.wp-block-calendar[style*="font-size"] table,
.wp-block-calendar[class*="-font-size"] .wp-calendar-nav,
.wp-block-calendar[style*="font-size"] .wp-calendar-nav {
font-size: inherit;
}
/* Block: Columns ---------------------------- */
.wp-block-columns.alignfull,

View File

@ -3061,6 +3061,15 @@ ol.wp-block-latest-comments {
letter-spacing: inherit;
}
/* Block: Calendar --------------------------- */
.wp-block-calendar[class*="-font-size"] table,
.wp-block-calendar[style*="font-size"] table,
.wp-block-calendar[class*="-font-size"] .wp-calendar-nav,
.wp-block-calendar[style*="font-size"] .wp-calendar-nav {
font-size: inherit;
}
/* Block: Columns ---------------------------- */
.wp-block-columns.alignfull,

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.7-alpha-58818';
$wp_version = '6.7-alpha-58819';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.