emoji.wxss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. @import '../../common.wxss';
  2. .page {
  3. background-color: var(--weui-BG-0)
  4. }
  5. .record {
  6. padding: 15px 0;
  7. margin-left: 10px;
  8. display: flex;
  9. }
  10. .avator {
  11. display: inline-block;
  12. width: 30px;
  13. height: 30px;
  14. border-radius: 5px;
  15. background-color: indianred;
  16. margin-right: 10px;
  17. }
  18. .comment {
  19. padding: 5px;
  20. background-color: var(--weui-BG-3);
  21. border-color: var(--weui-BG-0);
  22. border-radius: 5px;
  23. font-size: 18px;
  24. display: flex;
  25. align-items: center;
  26. flex-wrap: wrap;
  27. line-height: 24px;
  28. max-width: 200px;
  29. }
  30. .emoji-wrp {
  31. display: inline-block;
  32. width: 24px;
  33. height: 24px;
  34. }
  35. .emoji-icon {
  36. display: inline-block;
  37. transform-origin: 0 0;
  38. transform: scale(0.375);
  39. }
  40. .reply_wrp {
  41. position: fixed;
  42. bottom: 0;
  43. width: 100%;
  44. max-width: 600px;
  45. /* background-color: #F9F9F9; */
  46. }
  47. .reply_tool {
  48. display: -webkit-box;
  49. display: -webkit-flex;
  50. display: flex;
  51. -webkit-box-align: center;
  52. -webkit-align-items: center;
  53. align-items: center;
  54. font-size: 0;
  55. padding: 8px 12px;
  56. background-color: var(--weui-BG-1);
  57. position: relative;
  58. }
  59. .reply_tool:before {
  60. content: "";
  61. position: absolute;
  62. left: 0;
  63. top: 0;
  64. right: 0;
  65. height: 1px;
  66. border-top: 1px solid rgba(0, 0, 0, 0.1);
  67. color: rgba(0, 0, 0, 0.1);
  68. }
  69. .reply_form_wrp {
  70. -webkit-box-flex: 1;
  71. -webkit-flex: 1;
  72. flex: 1;
  73. min-width: 0;
  74. }
  75. .reply_label {
  76. display: block;
  77. background-color: var(--weui-BG-2);
  78. -webkit-border-radius: 5px;
  79. border-radius: 5px;
  80. margin-right: 8px;
  81. }
  82. .reply_input {
  83. font-size: 17px;
  84. min-height: 40px;
  85. /* height: 40px; */
  86. padding: 0 12px;
  87. width: 100%;
  88. -webkit-box-sizing: border-box;
  89. box-sizing: border-box;
  90. -webkit-border-radius: 4px;
  91. border-radius: 4px;
  92. caret-color: #1AAD19;
  93. }
  94. .reply_input[disabled] {
  95. background-color: #E8E8E8;
  96. color: #888888;
  97. }
  98. .reply_button {
  99. width: 32px;
  100. height: 32px;
  101. overflow: hidden;
  102. margin-right: 8px;
  103. }
  104. .reply_button.active {
  105. opacity: 0.5;
  106. }
  107. .reply_button image {
  108. width: 32px;
  109. height: 32px;
  110. }
  111. .reply_button image:active {
  112. opacity: 50%;
  113. }
  114. .reply_button:last-child {
  115. margin-right: 0;
  116. }
  117. .reply_panel_wrp {
  118. height: 200px;
  119. overflow: hidden;
  120. position: relative;
  121. }
  122. /* .reply_panel__dark {
  123. background: var(--weui-BG-1);
  124. } */
  125. .reply_panel {
  126. height: 200px;
  127. overflow: auto;
  128. position: absolute;
  129. left: 0;
  130. right: 0;
  131. top: 300px;
  132. -webkit-transition: top .2s;
  133. transition: top .2s;
  134. /* background: var(--weui-BG-3); */
  135. -webkit-overflow-scrolling: touch;
  136. }
  137. .reply_panel[hidden] {
  138. display: block;
  139. }
  140. .reply_panel.show {
  141. height: 300px;
  142. top: 0;
  143. }
  144. .reply_panel:before {
  145. content: "";
  146. position: absolute;
  147. left: 0;
  148. top: 0;
  149. right: 0;
  150. height: 1px;
  151. border-top: 1px solid rgba(0, 0, 0, 0.1);
  152. color: rgba(0, 0, 0, 0.1);
  153. }
  154. .reply_quick_item {
  155. position: relative;
  156. padding: 16px 12px;
  157. font-size: 17px;
  158. background-color: #FFFFFF;
  159. border-radius: 4px;
  160. margin: 8px;
  161. color: rgba(0, 0, 0, 0.9);
  162. word-wrap: break-word;
  163. word-break: break-all;
  164. }
  165. .reply_quick_item:last-child {
  166. margin-bottom: 0;
  167. }
  168. .reply_quick_item:after {
  169. content: "";
  170. position: absolute;
  171. left: 0;
  172. bottom: 0;
  173. right: 0;
  174. height: 1px;
  175. border-top: 1px solid rgba(0, 0, 0, 0.05);
  176. color: rgba(0, 0, 0, 0.05);
  177. }
  178. .reply_quick_item:last-child:after {
  179. display: none;
  180. }
  181. .reply_quick_tool {
  182. text-align: center;
  183. padding: 16px 12px;
  184. font-size: 14px;
  185. }
  186. .reply_quick_tool navigator {
  187. color: #204495;
  188. }
  189. .reply_quick_empty {
  190. position: absolute;
  191. top: 0;
  192. left: 0;
  193. bottom: 0;
  194. right: 0;
  195. text-align: center;
  196. font-size: 17px;
  197. }
  198. .reply_quick_empty:active image {
  199. opacity: 0.5;
  200. }
  201. .pic_reply_quick_edit {
  202. vertical-align: middle;
  203. width: 18px;
  204. height: 18px;
  205. vertical-align: middle;
  206. margin-top: -3px;
  207. margin-right: 8px;
  208. }
  209. .reply_quick_empty:after {
  210. content: "";
  211. display: inline-block;
  212. vertical-align: middle;
  213. width: 0;
  214. height: 100%;
  215. }
  216. .reply_quick_empty navigator {
  217. color: #000000;
  218. }
  219. .function_list {
  220. text-align: justify;
  221. }
  222. .function_item {
  223. display: inline-block;
  224. vertical-align: middle;
  225. padding: 12px;
  226. }
  227. .function_item .reply_function_pic.active {
  228. display: none;
  229. }
  230. .function_item:active .reply_function_pic {
  231. display: none;
  232. }
  233. .function_item:active .reply_function_pic.active {
  234. display: inline-block;
  235. }
  236. .reply_function_pic {
  237. width: 64px;
  238. height: 64px;
  239. }
  240. .safearea {
  241. background-color: var(--weui-BG-1);
  242. }
  243. .safearea_emojiShow {
  244. background-color: var(--weui-BG-0);
  245. }