_post-comments.scss 375 B

1234567891011121314151617181920
  1. .wp-block-post-comments {
  2. form {
  3. input:not([type=submit]):not([type=checkbox]),
  4. textarea {
  5. border: none;
  6. background: var(--wp--custom--color--tertiary);
  7. }
  8. }
  9. // Target certain links within post comments to use the underline treatment.
  10. .comment-body > p > a,
  11. .comment-edit-link {
  12. text-decoration: underline;
  13. &:hover {
  14. text-decoration: none;
  15. }
  16. }
  17. }