|
@@ -412,53 +412,10 @@ p.has-background {
|
|
|
font-size: var(--wp--custom--form--label--typography--font-size);
|
|
|
}
|
|
|
|
|
|
-.wp-block-post-comments input[type="submit"],
|
|
|
-.wp-block-post-comments .reply a {
|
|
|
- border-width: 0;
|
|
|
- padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
|
|
|
- padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
|
|
|
- padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
|
|
|
- padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
|
|
|
- font-weight: var(--wp--custom--button--typography--font-weight);
|
|
|
- font-family: inherit;
|
|
|
- font-size: var(--wp--custom--button--typography--font-size);
|
|
|
- line-height: var(--wp--custom--button--typography--line-height);
|
|
|
- text-decoration: none;
|
|
|
- opacity: 1;
|
|
|
- color: var(--wp--custom--button--color--text);
|
|
|
- background-color: var(--wp--custom--button--color--background);
|
|
|
- border-color: currentColor;
|
|
|
- border-radius: var(--wp--custom--button--border--radius);
|
|
|
-}
|
|
|
-
|
|
|
-.wp-block-post-comments input[type="submit"] svg,
|
|
|
-.wp-block-post-comments .reply a svg {
|
|
|
- fill: var(--wp--custom--button--color--text);
|
|
|
-}
|
|
|
-
|
|
|
-.wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):hover, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):focus, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color).has-focus,
|
|
|
-.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):hover,
|
|
|
-.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):focus,
|
|
|
-.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color).has-focus {
|
|
|
- --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
|
|
|
- --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
|
|
|
- --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
|
|
|
- opacity: 1;
|
|
|
- color: var(--wp--custom--button--color--text);
|
|
|
- background-color: var(--wp--custom--button--color--background);
|
|
|
- border-color: currentColor;
|
|
|
- border-color: var(--wp--custom--button--border--color);
|
|
|
-}
|
|
|
-
|
|
|
-.wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):hover svg, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):focus svg, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color).has-focus svg,
|
|
|
-.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):hover svg,
|
|
|
-.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):focus svg,
|
|
|
-.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color).has-focus svg {
|
|
|
- fill: var(--wp--custom--button--color--text);
|
|
|
-}
|
|
|
-
|
|
|
.wp-block-post-comments .reply {
|
|
|
- margin-block: var(--wp--custom--margin--vertical);
|
|
|
+ font-size: var(--wp--preset--font-size--normal);
|
|
|
+ margin-top: var(--wp--custom--margin--vertical);
|
|
|
+ margin-bottom: 0;
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments .reply a {
|
|
@@ -469,18 +426,32 @@ p.has-background {
|
|
|
display: grid;
|
|
|
column-gap: 1em;
|
|
|
grid-template-rows: auto;
|
|
|
- grid-template-areas: "notes notes" "comment comment" "author author" "email email" "url url" "cookies-consent cookies-consent" "form-submit form-submit";
|
|
|
+ grid-template-areas: "notes notes" "author author" "email url" "comment comment" "cookies-consent cookies-consent" "form-submit form-submit";
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments form input:not([type=submit]):not([type=checkbox]),
|
|
|
.wp-block-post-comments form textarea {
|
|
|
+ font-size: var(--wp--preset--font-size--normal);
|
|
|
background: var(--wp--custom--color--background);
|
|
|
border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
+.wp-block-post-comments form textarea {
|
|
|
+ vertical-align: top;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-post-comments form label:not([for=wp-comment-cookies-consent]) {
|
|
|
+ font-size: var(--wp--custom--form--label--typography--font-size);
|
|
|
+ font-weight: var(--wp--custom--form--label--typography--font-weight);
|
|
|
+ letter-spacing: var(--wp--custom--form--label--typography--letter-spacing);
|
|
|
+ margin-bottom: var(--wp--custom--form--label--spacing--margin--bottom);
|
|
|
+ text-transform: var(--wp--custom--form--label--typography--text-transform);
|
|
|
+}
|
|
|
+
|
|
|
.wp-block-post-comments form p {
|
|
|
margin-top: 0;
|
|
|
+ margin-bottom: var(--wp--custom--margin--vertical);
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments form .comment-notes {
|
|
@@ -561,13 +532,24 @@ p.has-background {
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
|
|
|
+.wp-block-post-comments .commentlist {
|
|
|
+ margin-bottom: calc(2 * var(--wp--style--block-gap));
|
|
|
+}
|
|
|
+
|
|
|
.wp-block-post-comments .commentlist .comment p {
|
|
|
font-size: var(--wp--custom--post-comment--typography--font-size);
|
|
|
line-height: var(--wp--custom--post-comment--typography--line-height);
|
|
|
+ margin-bottom: var(--wp--custom--margin--vertical);
|
|
|
+ margin-top: var(--wp--custom--margin--vertical);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-post-comments .comment-body {
|
|
|
+ margin-bottom: calc(1.5 * var( --wp--style--block-gap ));
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments .commentmetadata {
|
|
|
margin-left: 0;
|
|
|
+ margin-bottom: calc(0.75 * var( --wp--style--block-gap ));
|
|
|
}
|
|
|
|
|
|
.wp-block-post-comments .comment-awaiting-moderation {
|