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:
parent
9c5b1391d7
commit
3bab2c9131
|
@ -3041,6 +3041,15 @@ ol.wp-block-latest-comments {
|
||||||
letter-spacing: inherit;
|
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 ---------------------------- */
|
/* Block: Columns ---------------------------- */
|
||||||
|
|
||||||
.wp-block-columns.alignfull,
|
.wp-block-columns.alignfull,
|
||||||
|
|
|
@ -3061,6 +3061,15 @@ ol.wp-block-latest-comments {
|
||||||
letter-spacing: inherit;
|
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 ---------------------------- */
|
/* Block: Columns ---------------------------- */
|
||||||
|
|
||||||
.wp-block-columns.alignfull,
|
.wp-block-columns.alignfull,
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue