Twenty Twenty: Add a missing border to button-style links with Outline style.
This changeset addresses an issue where button-style links with Outline style variation were not consistent with the corresponding variation of the Button block. Props umesh84, sabernhardt, mrfoxtalbot, mohitdadhich10. Fixes #55824. Built from https://develop.svn.wordpress.org/trunk@54107 git-svn-id: http://core.svn.wordpress.org/trunk@53666 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c3227c3776
commit
ee5e12f906
|
@ -3019,6 +3019,7 @@ h2.entry-title {
|
|||
}
|
||||
|
||||
.is-style-outline .wp-block-button__link {
|
||||
border: 2px solid;
|
||||
padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem);
|
||||
}
|
||||
|
||||
|
|
|
@ -3039,6 +3039,7 @@ h2.entry-title {
|
|||
}
|
||||
|
||||
.is-style-outline .wp-block-button__link {
|
||||
border: 2px solid;
|
||||
padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem);
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-54106';
|
||||
$wp_version = '6.1-alpha-54107';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue