Updates the packages to match Gutenberg version 21.9.0 RC2. Also updates the sync script to work with the new `package-lock.json` format. Some reusable block tests were adjusted to work with more render arguments. Added `core-data` to the ignore list for `verify:source-maps` because Yjs has been bundled by accident. To be removed in a follow-up. See https://core.trac.wordpress.org/ticket/64120. See https://github.com/WordPress/gutenberg/pull/72503. See: https://github.com/WordPress/wordpress-develop/pull/10355. See: https://core.trac.wordpress.org/ticket/64117. Props ellatrix, dmsnell. Fixes #64117. Built from https://develop.svn.wordpress.org/trunk@61009 git-svn-id: http://core.svn.wordpress.org/trunk@60345 1a063a9b-81f0-0310-95a4-ce76da25c4cd
33 lines
695 B
CSS
33 lines
695 B
CSS
.block-editor-block-list__block[data-type="core/more"]{
|
|
margin-bottom:28px;
|
|
margin-top:28px;
|
|
max-width:100%;
|
|
text-align:center;
|
|
}
|
|
|
|
.wp-block-more{
|
|
display:block;
|
|
text-align:center;
|
|
white-space:nowrap;
|
|
}
|
|
.wp-block-more .rich-text{
|
|
background:#fff;
|
|
color:#757575;
|
|
display:inline-flex;
|
|
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
|
font-size:13px;
|
|
font-weight:600;
|
|
padding:10px 36px;
|
|
position:relative;
|
|
text-align:center;
|
|
text-transform:uppercase;
|
|
white-space:nowrap;
|
|
}
|
|
.wp-block-more:before{
|
|
border-top:3px dashed #ccc;
|
|
content:"";
|
|
left:0;
|
|
position:absolute;
|
|
right:0;
|
|
top:50%;
|
|
} |