Нет описания

replyChat.css 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. .btns {
  2. background: #00a1cb;
  3. color: #fff;
  4. padding: 6px 10px;
  5. outline: none;
  6. font-size: 12px;
  7. margin-left: 15px;
  8. border: 0;
  9. border-radius: 3px;
  10. box-sizing: border-box;
  11. cursor: pointer;
  12. vertical-align: middle;
  13. }
  14. .Common {
  15. width: 100%;
  16. background: #fff;
  17. text-align: center;
  18. padding: 10px 15px;
  19. height: auto;
  20. overflow-y: auto;
  21. }
  22. .Common table {
  23. width: 100%;
  24. }
  25. .Common table th {
  26. padding: 5px 8px 5px 0;
  27. text-align: right;
  28. width: 20%;
  29. }
  30. .Common table td {
  31. padding: 6px 0 5px 10px;
  32. text-align: left;
  33. color: #717171;
  34. line-height: 200%;
  35. }
  36. .Common table td textarea {
  37. width: 100%;
  38. vertical-align: middle;
  39. resize: none;
  40. outline: none;
  41. }
  42. .select_ {
  43. width: 150px;
  44. background-color: #FFF;
  45. background-image: none;
  46. border: 1px solid #ccc;
  47. border-radius: 1px;
  48. color: inherit;
  49. padding: 6px 12px;
  50. outline: none;
  51. vertical-align: middle;
  52. }
  53. .Common span{
  54. background-image: none;
  55. border: 1px solid #ccc;
  56. border-radius: 1px;
  57. color: inherit;
  58. padding: 6px 12px
  59. }
  60. .btn_box{
  61. margin-top: 30px;
  62. }
  63. .chatlist_con, .chatlist_con li{
  64. margin: 0;
  65. padding: 0;
  66. list-style: none;
  67. }
  68. .BiaoTi {
  69. width: 100%;
  70. text-align: center;
  71. border-color: #ccc;
  72. border: 1px solid #ccc;
  73. }
  74. textarea {
  75. border-color: #ccc;
  76. border: 1px solid #ccc;
  77. height: 100px;
  78. }
  79. .chatlist_con li {
  80. margin-bottom: 15px;
  81. }
  82. .message_time {
  83. margin:0;
  84. text-align: center;
  85. }
  86. .message_time span{
  87. border: 0;
  88. }
  89. .ver_middle {
  90. float: left;
  91. margin: 0 10px 0 0;
  92. border-radius: 3px;
  93. }
  94. .message_text {
  95. display: inline-block;
  96. position: relative;
  97. padding: 0 10px;
  98. max-width: calc(100% - 40px);
  99. min-height: 30px;
  100. line-height: 2.5;
  101. font-size: 9pt;
  102. text-align: left;
  103. word-break: break-all;
  104. background-color: #e6e2e2;
  105. border-radius: 4px;
  106. }
  107. .message_text:before {
  108. content: " ";
  109. position: absolute;
  110. top: 9px;
  111. right: 100%;
  112. border: 6px solid transparent;
  113. border-right-color: #e6e2e2;
  114. }
  115. .chatlist_con li .self {
  116. text-align: right;
  117. }
  118. .chatlist_con li .self .ver_middle {
  119. float: right;
  120. margin: 0 0 0 10px;
  121. }
  122. .self .message_text {
  123. background-color: #67c3db;
  124. color: #fff;
  125. }
  126. .self .message_text:before {
  127. right: inherit;
  128. left: 100%;
  129. border-right-color: transparent;
  130. border-left-color: #67c3db;
  131. }
  132. .Common table {
  133. width: 95%;
  134. margin: 0 auto;
  135. }
  136. .Common table th {
  137. width: 10%;
  138. }
  139. .btns {
  140. padding: 6px 15px;
  141. font-size: 15px;
  142. }