comment.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. @charset "UTF-8";
  2. /* 댓글 목록 */
  3. #commentList {
  4. box-sizing: content-box;
  5. }
  6. #commentList ul {
  7. list-style: none;
  8. padding: 0;
  9. margin: 10px 0;
  10. }
  11. #commentList ul li.media {
  12. display: flex;
  13. flex-direction: row;
  14. flex-wrap: nowrap;
  15. list-style: none;
  16. align-items: flex-start;
  17. padding: 0 10px;
  18. }
  19. #commentList ul li.media .media-thumb {
  20. vertical-align: top;
  21. margin-right: 9px;
  22. }
  23. #commentList ul li.media .media-body {
  24. box-sizing: content-box;
  25. margin-left: 8px;
  26. width: 100%;
  27. }
  28. #commentList ul li.media .media-body form dl {
  29. margin-bottom: 0;
  30. }
  31. #commentList ul li.media .media-body form dl dt strong {
  32. color: #465e85;
  33. font-size: 14px;
  34. }
  35. #commentList ul li.media .media-body form dl dt span {
  36. font-size: 12px;
  37. margin-left: 8px;
  38. font-weight: normal;
  39. }
  40. #commentList ul li.media .media-body form dl dt .dropdown-toggle {
  41. padding: 0;
  42. text-decoration: none;
  43. }
  44. #commentList ul li.media .media-body form dl dt .dropdown-toggle:hover, #commentList ul li.media .media-body form dl dt .dropdown-toggle:focus {
  45. text-decoration: underline;
  46. }
  47. #commentList ul li.media .media-body form dl dt .dropdown-menu {
  48. min-width: auto;
  49. margin-left: 20px;
  50. border-radius: 0;
  51. border-color: #cfcfcf #999 #666 #999;
  52. border-width: 1px 1px 1px 0;
  53. border-style: solid;
  54. box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
  55. -moz-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
  56. -webkit-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
  57. }
  58. #commentList ul li.media .media-body form dl dt .dropdown-menu .dropdown-item {
  59. line-height: initial;
  60. padding: 0.4rem 1.2rem;
  61. cursor: pointer;
  62. }
  63. #commentList ul li.media .media-body form dl dt .dropdown-menu .dropdown-item:hover, #commentList ul li.media .media-body form dl dt .dropdown-menu .dropdown-item:focus, #commentList ul li.media .media-body form dl dt .dropdown-menu .dropdown-item:active {
  64. background: #eaeaea;
  65. color: #000;
  66. }
  67. #commentList ul li.media .media-body form dl dd {
  68. margin-bottom: 0;
  69. }
  70. #commentList ul li.media .media-body form dl dd p {
  71. margin-top: 2px;
  72. margin-bottom: 10px;
  73. }
  74. #commentList ul li.media .media-body form dl dd p svg {
  75. color: #7e7e7e;
  76. margin-right: 6px;
  77. }
  78. #commentList ul li.media .media-body form dl dd p input {
  79. padding: 0;
  80. display: inline-block;
  81. }
  82. #commentList ul li.media .media-body form dl dd p input:focus {
  83. outline: none;
  84. }
  85. #commentList ul li.media .media-body form dl dd button {
  86. padding: 0;
  87. border: none;
  88. background: none;
  89. margin-right: 10px;
  90. cursor: pointer;
  91. color: #838383;
  92. }
  93. #commentList ul li.media .media-body form dl dd button:hover, #commentList ul li.media .media-body form dl dd button:focus {
  94. text-decoration: none;
  95. color: #ad611b;
  96. outline: 0;
  97. }
  98. #commentList ul li.media .media-body form dl dd button:last-child {
  99. color: #6cbd02;
  100. }
  101. #commentList ul li.media .media-body form dl dd button:last-child:hover, #commentList ul li.media .media-body form dl dd button:last-child:focus {
  102. text-decoration: underline;
  103. }
  104. #commentList ul li.media .media-body div > form {
  105. width: calc(100% - 1px);
  106. margin-top: 10px;
  107. }
  108. #commentList ul li.media .media-body div > form textarea,
  109. #commentList ul li.media .media-body div > form .mce-tinymce {
  110. margin-bottom: 10px;
  111. }
  112. #commentList > nav ul {
  113. margin: 15px 0 20px 0;
  114. }
  115. /* 댓글 작성 */
  116. #commentWrite {
  117. padding: 5px 10px;
  118. }
  119. #commentWrite textarea,
  120. #commentWrite .mce-tinymce {
  121. margin-bottom: 10px;
  122. }/*# sourceMappingURL=comment.css.map */