Pristine upstream, unpacked from the official wordpress.org tarball. https://wordpress.org/wordpress-7.1.1.tar.gz sha1 2a9d68474e8703aa3a66f80427b325e0941b6a1e (published by wordpress.org) sha256 3996fee13448ef12e07e9f0c77db2f655ffa1b7cde71c80a4965d3bf1fb956b3 This branch carries nothing but upstream releases, one commit each, and is never edited. It is the other side of the git-subtree merge that brings security releases into SiriusPress/wordpress/ — see SiriusPress/docs/upstream-merges.md.
41 lines
No EOL
858 B
CSS
41 lines
No EOL
858 B
CSS
/**
|
|
* Breakpoints & Media Queries
|
|
*/
|
|
.wp-block-embed {
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
clear: both;
|
|
}
|
|
.wp-block-embed.is-loading {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.wp-block-embed .wp-block-embed__placeholder-input {
|
|
flex: 1 1 auto;
|
|
}
|
|
.wp-block-embed .components-placeholder__error {
|
|
word-break: break-word;
|
|
}
|
|
|
|
.wp-block-post-content .wp-block-embed__learn-more a {
|
|
color: var(--wp-admin-theme-color);
|
|
}
|
|
|
|
.block-library-embed__interactive-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
opacity: 0;
|
|
}
|
|
|
|
.wp-block[data-align=left] > .wp-block-embed,
|
|
.wp-block[data-align=right] > .wp-block-embed {
|
|
max-width: 360px;
|
|
width: 100%;
|
|
}
|
|
.wp-block[data-align=left] > .wp-block-embed .wp-block-embed__wrapper,
|
|
.wp-block[data-align=right] > .wp-block-embed .wp-block-embed__wrapper {
|
|
min-width: 280px;
|
|
} |