mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-09 09:57:38 +01:00
Twenty Sixteen: Fix Letter Case implementation.
This changeset fixes Letter Case control implementation on the Button block, on both front-end and in the Editor. Props thakordarshil, pateljaymin, sabernhardt, panchalhimani711, mukesh27. See #58526. Built from https://develop.svn.wordpress.org/trunk@55999 git-svn-id: http://core.svn.wordpress.org/trunk@55511 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
199961962a
commit
5c0b2fb6d6
@ -252,6 +252,11 @@ p.has-drop-cap:not(:focus)::first-letter {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.wp-block-buttons[style*="text-transform"] .wp-block-button__link,
|
||||
.wp-block-button[style*="text-transform"] .wp-block-button__link {
|
||||
text-transform: inherit;
|
||||
}
|
||||
|
||||
.wp-block-button__link {
|
||||
background: #1a1a1a;
|
||||
color: #fff;
|
||||
|
@ -560,6 +560,11 @@ Description: Used to style blocks in the editor.
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.wp-block-buttons[style*="text-transform"] .wp-block-button__link,
|
||||
.wp-block-button[style*="text-transform"] .wp-block-button__link {
|
||||
text-transform: inherit;
|
||||
}
|
||||
|
||||
.wp-block-button__link {
|
||||
background: #1a1a1a;
|
||||
color: #fff;
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-55998';
|
||||
$wp_version = '6.3-alpha-55999';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user