_comment_crowi-plus.scss 2.0 KB

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