Twenty Nineteen: Fixes button line height.
Line height was broken for button block and adding spacing. Props nidhidhandhukiya, shailu25. Fixes #58443. Built from https://develop.svn.wordpress.org/trunk@56580 git-svn-id: http://core.svn.wordpress.org/trunk@56092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0dace57414
commit
7d3694a17c
|
@ -1005,7 +1005,7 @@ figcaption,
|
|||
|
||||
/** === Button === */
|
||||
.wp-block-button .wp-block-button__link {
|
||||
line-height: 1.8;
|
||||
line-height: inherit;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||
font-size: 0.88889em;
|
||||
font-weight: bold;
|
||||
|
|
|
@ -381,7 +381,7 @@ figcaption,
|
|||
.wp-block-button {
|
||||
|
||||
.wp-block-button__link {
|
||||
line-height: 1.8;
|
||||
line-height:inherit;
|
||||
@include font-family( $font__heading );
|
||||
font-size: $font__size-sm;
|
||||
font-weight: bold;
|
||||
|
|
|
@ -5489,7 +5489,7 @@ body.page .main-navigation {
|
|||
border: none;
|
||||
font-size: 0.88889em;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||
line-height: 1.2;
|
||||
line-height: inherit;
|
||||
box-sizing: border-box;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.4-alpha-56579';
|
||||
$wp_version = '6.4-alpha-56580';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue