comment.css 3.8 KB

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