Twenty Twenty-Three: Fixes unnecessary borders for links images in Whisper variation.
This fixes the Whisper variation having borders for links images. Other styles did not have this. Props colorful-tones, sabernhardt. Fixes #57368. Built from https://develop.svn.wordpress.org/trunk@58818 git-svn-id: http://core.svn.wordpress.org/trunk@58214 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
30cf05b738
commit
9c5b1391d7
|
@ -83,6 +83,20 @@
|
|||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/image": {
|
||||
"elements": {
|
||||
"link": {
|
||||
"border": {
|
||||
"width": "0"
|
||||
},
|
||||
":hover": {
|
||||
"color": {
|
||||
"background": "transparent"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/navigation": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
|
@ -169,6 +183,20 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"core/post-featured-image": {
|
||||
"elements": {
|
||||
"link": {
|
||||
"border": {
|
||||
"width": "0"
|
||||
},
|
||||
":hover": {
|
||||
"color": {
|
||||
"background": "transparent"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
|
@ -251,6 +279,15 @@
|
|||
"width": "6px 0 0 0"
|
||||
}
|
||||
},
|
||||
"core/site-logo": {
|
||||
"elements": {
|
||||
"link": {
|
||||
"border": {
|
||||
"width": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.7-alpha-58817';
|
||||
$wp_version = '6.7-alpha-58818';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue