_comment_growi.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. .growi {
  2. %comment-section {
  3. position: relative;
  4. padding: 1em;
  5. // speech balloon
  6. &:before {
  7. position: absolute;
  8. top: 1.5em;
  9. left: -1em;
  10. display: block;
  11. width: 0;
  12. content: '';
  13. border: 1em solid transparent;
  14. border-left-width: 0;
  15. @include media-breakpoint-down(xs) {
  16. top: 1em;
  17. }
  18. }
  19. }
  20. %picture {
  21. float: left;
  22. width: 3em;
  23. height: 3em;
  24. margin-top: 0.8em;
  25. @include media-breakpoint-down(xs) {
  26. width: 2em;
  27. height: 2em;
  28. }
  29. }
  30. .page-comments {
  31. h4 {
  32. margin-bottom: 1em;
  33. }
  34. }
  35. .page-comment-writer {
  36. @include media-breakpoint-down(xs) {
  37. height: 3.5em;
  38. }
  39. }
  40. .page-comment {
  41. position: relative;
  42. padding-top: 70px;
  43. margin-top: -70px;
  44. // ユーザー名
  45. .page-comment-creator {
  46. margin-top: -0.5em;
  47. margin-bottom: 0.5em;
  48. font-weight: bold;
  49. }
  50. // ユーザーアイコン
  51. .picture {
  52. @extend %picture;
  53. }
  54. // コメントセクション
  55. .page-comment-main {
  56. @extend %comment-section;
  57. @include media-breakpoint-up(sm) {
  58. margin-left: 4.5em;
  59. }
  60. @include media-breakpoint-down(xs) {
  61. &:before {
  62. content: none;
  63. }
  64. }
  65. }
  66. // コメント本文
  67. .page-comment-body {
  68. margin-bottom: 0.5em;
  69. word-wrap: break-word;
  70. }
  71. }
  72. /*
  73. * reply
  74. */
  75. .page-comment-reply {
  76. margin-top: 1em;
  77. }
  78. // remove margin after hidden replies
  79. .page-comments-hidden-replies + .page-comment-reply {
  80. margin-top: 0;
  81. }
  82. // reply button
  83. .btn.btn-comment-reply {
  84. margin-top: 0.5em;
  85. border: none;
  86. }
  87. // display cheatsheet for comment form only
  88. .comment-form {
  89. .editor-cheatsheet {
  90. display: none;
  91. }
  92. position: relative;
  93. margin-top: 1em;
  94. // user icon
  95. .picture {
  96. @extend %picture;
  97. }
  98. // seciton
  99. .comment-form-main {
  100. @extend %comment-section;
  101. margin-left: 4.5em;
  102. @include media-breakpoint-down(xs) {
  103. margin-left: 3.5em;
  104. }
  105. }
  106. // textarea
  107. .comment-write {
  108. margin-bottom: 0.5em;
  109. }
  110. .comment-form-comment {
  111. height: 80px;
  112. &:focus,
  113. &:not(:invalid) {
  114. height: 180px;
  115. transition: height 0.2s ease-out;
  116. }
  117. }
  118. .comment-form-preview {
  119. padding-top: 0.5em;
  120. }
  121. }
  122. }