_comment_crowi-plus.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .crowi-plus.main-container {
  2. .page-comments-row {
  3. margin: 30px 16px;
  4. }
  5. .page-comments {
  6. border-top: 3px solid #f0f0f0;
  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. // ユーザーアイコン
  52. .picture.picture-rounded{
  53. position: absolute;
  54. top: 1em;
  55. width: 3em;
  56. height: 3em;
  57. }
  58. // コメントフォームセクション
  59. .comment-form-main{
  60. margin-left: 4.5em;
  61. margin-bottom: 1em;
  62. background: #f5f5f5;
  63. padding: 1em;
  64. position: relative;
  65. border-radius: 3px;
  66. &:before{
  67. border: 2em solid transparent;
  68. border-right-color:#f5f5f5;
  69. border-left-width: 0;
  70. left: -1em;
  71. content: "";
  72. display: block;
  73. top: 0.5em;
  74. position: absolute;
  75. width: 0;
  76. }
  77. }
  78. // コメントの吹き出しアイコン
  79. .comment-ico{
  80. font-size: 1.2em;
  81. margin-right: 0.3em;
  82. opacity: 0.6;
  83. }
  84. // コメント入力フォーム
  85. .comment-write{
  86. margin-bottom: 0.5em;
  87. }
  88. }
  89. }