_comment_growi.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .growi.main-container {
  2. %comment-section {
  3. position: relative;
  4. padding: 1em;
  5. margin-left: 4.5em;
  6. margin-bottom: 1em;
  7. &:before {
  8. border: 1em solid transparent;
  9. border-left-width: 0;
  10. left: -1em;
  11. content: "";
  12. display: block;
  13. top: 1.5em;
  14. position: absolute;
  15. width: 0;
  16. }
  17. }
  18. %picture {
  19. float: left;
  20. margin-top: 0.8em;
  21. width: 3em;
  22. height: 3em;
  23. }
  24. .page-comments-row {
  25. border-top: 5px solid;
  26. margin: 30px 0px;
  27. }
  28. .page-comments {
  29. h4 {
  30. margin-bottom: 1em;
  31. }
  32. }
  33. .page-comment {
  34. position: relative;
  35. // ユーザー名
  36. .page-comment-creator {
  37. margin-top: -0.5em;
  38. margin-bottom: 0.5em;
  39. font-weight: bold;
  40. }
  41. // ユーザーアイコン
  42. .picture {
  43. @extend %picture;
  44. }
  45. // コメントセクション
  46. .page-comment-main {
  47. @extend %comment-section;
  48. }
  49. // コメント本文
  50. .page-comment-body {
  51. margin-bottom: 0.5em;
  52. word-wrap: break-word;
  53. }
  54. .page-comment-meta {
  55. color: #999;
  56. font-size: .9em;
  57. text-align: right;
  58. * {
  59. vertical-align: 25%;
  60. }
  61. }
  62. }
  63. // show when hover
  64. .page-comment-main:hover > .page-comment-control {
  65. display: block;
  66. }
  67. .comment-form {
  68. position: relative;
  69. margin-top: 2em;
  70. // user icon
  71. .picture {
  72. @extend %picture;
  73. }
  74. // seciton
  75. .comment-form-main {
  76. @extend %comment-section;
  77. }
  78. // textarea
  79. .comment-write {
  80. margin-bottom: 0.5em;
  81. }
  82. .tab-content{
  83. padding-top: 10px;
  84. }
  85. .comment-form-comment {
  86. height: 80px;
  87. &:focus, &:not(:invalid) {
  88. transition: height 0.2s ease-out;
  89. height: 180px;
  90. }
  91. }
  92. }
  93. }