Updates the Gutenberg ref to include changes that generate both minified and non-minified CSS files during build. Previously, the build only produced a single CSS file (e.g., `style.css`), causing missing asset errors when `SCRIPT_DEBUG` is set to `false`, as Core expects `.min.css` files. Props peterwilsoncc, dd32, tyxla, jsnajdr, mcsf. Fixes #64393. Built from https://develop.svn.wordpress.org/trunk@61446 git-svn-id: http://core.svn.wordpress.org/trunk@60758 1a063a9b-81f0-0310-95a4-ce76da25c4cd
29 lines
545 B
CSS
29 lines
545 B
CSS
/**
|
|
* Colors
|
|
*/
|
|
.wp-block[data-align=center] > .wp-block-button {
|
|
text-align: center;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.wp-block[data-align=right] > .wp-block-button {
|
|
text-align: right;
|
|
}
|
|
|
|
.wp-block-button {
|
|
position: relative;
|
|
cursor: text;
|
|
}
|
|
.wp-block-button:focus {
|
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color);
|
|
outline: 2px solid transparent;
|
|
outline-offset: -2px;
|
|
}
|
|
.wp-block-button[data-rich-text-placeholder]::after {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
div[data-type="core/button"] {
|
|
display: table;
|
|
} |