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.
71 lines
No EOL
2.2 KiB
CSS
71 lines
No EOL
2.2 KiB
CSS
/**
|
|
* Colors
|
|
*/
|
|
:where(.wp-block-post-comments-form textarea),
|
|
:where(.wp-block-post-comments-form input:not([type=submit])) {
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: #949494;
|
|
font-size: 1em;
|
|
font-family: inherit;
|
|
}
|
|
|
|
:where(.wp-block-post-comments-form textarea),
|
|
:where(.wp-block-post-comments-form input:where(:not([type=submit]):not([type=checkbox]))) {
|
|
padding: calc(0.667em + 2px);
|
|
}
|
|
|
|
.wp-block-post-comments-form {
|
|
box-sizing: border-box;
|
|
}
|
|
.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title) {
|
|
font-weight: inherit;
|
|
}
|
|
.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title) {
|
|
font-family: inherit;
|
|
}
|
|
.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title), .wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title) {
|
|
font-size: inherit;
|
|
}
|
|
.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title) {
|
|
line-height: inherit;
|
|
}
|
|
.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title) {
|
|
font-style: inherit;
|
|
}
|
|
.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title) {
|
|
letter-spacing: inherit;
|
|
}
|
|
.wp-block-post-comments-form :where(input[type=submit]) {
|
|
box-shadow: none;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
text-align: center;
|
|
overflow-wrap: break-word;
|
|
}
|
|
.wp-block-post-comments-form .comment-form textarea,
|
|
.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden]) {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
.wp-block-post-comments-form .comment-form-author label,
|
|
.wp-block-post-comments-form .comment-form-email label,
|
|
.wp-block-post-comments-form .comment-form-url label {
|
|
display: block;
|
|
margin-bottom: 0.25em;
|
|
}
|
|
.wp-block-post-comments-form .comment-form-cookies-consent {
|
|
display: flex;
|
|
gap: 0.25em;
|
|
}
|
|
.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent {
|
|
margin-top: 0.35em;
|
|
}
|
|
.wp-block-post-comments-form .comment-reply-title {
|
|
margin-bottom: 0;
|
|
}
|
|
.wp-block-post-comments-form .comment-reply-title :where(small) {
|
|
font-size: var(--wp--preset--font-size--medium, smaller);
|
|
margin-left: 0.5em;
|
|
} |