_comment_growi.scss 415 B

1234567891011121314151617181920
  1. .growi {
  2. // display cheatsheet for comment form only
  3. .comment-form {
  4. // TODO: Never use .editor-cheatsheet class.
  5. .editor-cheatsheet {
  6. display: none;
  7. }
  8. // textarea
  9. // TODO: Never use .comment-form-comment class.
  10. .comment-form-comment {
  11. height: 80px;
  12. &:focus,
  13. &:not(:invalid) {
  14. height: 180px;
  15. transition: height 0.2s ease-out;
  16. }
  17. }
  18. }
  19. }