_comment_growi.scss 2.4 KB

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