_post-comments.scss 664 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .wp-block-post-comments {
  2. .reply {
  3. a {
  4. @include text-decoration;
  5. }
  6. }
  7. form {
  8. column-gap: 1.2em;
  9. }
  10. .comment-reply-title {
  11. margin-bottom: calc( 2 * var(--wp--custom--gap--baseline));
  12. }
  13. .comment-author {
  14. cite {
  15. font-weight: bold;
  16. }
  17. .says {
  18. display: none;
  19. }
  20. }
  21. .commentmetadata {
  22. --wp--style--block-gap: 48px;
  23. a {
  24. font-weight: 500;
  25. }
  26. }
  27. .commentlist {
  28. --wp--style--block-gap: 60px;
  29. }
  30. // Target certain links within post comments to use the underline treatment.
  31. .comment-body > p > a,
  32. .comment-edit-link {
  33. @include text-decoration;
  34. text-decoration: underline;
  35. &:hover {
  36. text-decoration: none;
  37. }
  38. }
  39. }