_comment_crowi-plus.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. // ユーザーアイコン
  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. }