_comment_crowi-plus.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .crowi-plus.main-container {
  2. .page-comments-row {
  3. border-top: 5px solid #f0f0f0;
  4. margin: 30px 16px;
  5. }
  6. .page-comments {
  7. h4 {
  8. margin-bottom: 1em;
  9. }
  10. }
  11. .page-comment {
  12. position: relative;
  13. // ユーザーアイコン
  14. .picture.picture-rounded {
  15. position: absolute;
  16. top: 1em;
  17. width: 3em;
  18. height: 3em;
  19. }
  20. // コメントセクション
  21. .page-comment-main {
  22. background: #f5f5f5;
  23. padding: 1em;
  24. position: relative;
  25. margin-left: 4.5em;
  26. margin-bottom: 1em;
  27. border-radius: 3px;
  28. &:before {
  29. border: 2em solid transparent;
  30. border-right-color:#f5f5f5;
  31. border-left-width: 0;
  32. left: -1em;
  33. content: "";
  34. display: block;
  35. top: 0.5em;
  36. position: absolute;
  37. width: 0;
  38. }
  39. }
  40. // コメント本文
  41. .page-comment-body {
  42. margin-bottom: 0.5em;
  43. }
  44. // ユーザー名
  45. .page-comment-creator {
  46. margin-bottom: 0.5em;
  47. }
  48. }
  49. .comment-form {
  50. position: relative;
  51. margin-top: 2em;
  52. // ユーザーアイコン
  53. .picture.picture-rounded {
  54. position: absolute;
  55. top: 1em;
  56. width: 3em;
  57. height: 3em;
  58. }
  59. // コメントフォームセクション
  60. .comment-form-main {
  61. margin-left: 4.5em;
  62. margin-bottom: 1em;
  63. background: #f5f5f5;
  64. padding: 1em;
  65. position: relative;
  66. border-radius: 3px;
  67. &:before {
  68. border: 2em solid transparent;
  69. border-right-color:#f5f5f5;
  70. border-left-width: 0;
  71. left: -1em;
  72. content: "";
  73. display: block;
  74. top: 0.5em;
  75. position: absolute;
  76. width: 0;
  77. }
  78. }
  79. // コメントの吹き出しアイコン
  80. .comment-ico {
  81. font-size: 1.2em;
  82. margin-right: 0.3em;
  83. opacity: 0.6;
  84. }
  85. // コメント入力フォーム
  86. .comment-write {
  87. margin-bottom: 0.5em;
  88. }
  89. }
  90. }