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
23 lines
521 B
CSS
23 lines
521 B
CSS
.wp-block-separator.has-css-opacity {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.wp-block-separator {
|
|
border: none;
|
|
border-bottom: 2px solid currentColor;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.wp-block-separator.has-alpha-channel-opacity {
|
|
opacity: initial;
|
|
}
|
|
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
|
|
width: 100px;
|
|
}
|
|
.wp-block-separator.has-background:not(.is-style-dots) {
|
|
border-bottom: none;
|
|
height: 1px;
|
|
}
|
|
.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
|
|
height: 2px;
|
|
} |