chatMini.scss 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. @charset "UTF-8";
  2. $chatBg: #34363c;
  3. $chatContBg: #eeeeee;
  4. $chatUiFont: #ffffff;
  5. $offsetBottom: 5px;
  6. $offsetRight: 5px;
  7. .mini-wrap{
  8. z-index: 123456789;
  9. height: 100%;
  10. }
  11. .mini-body{
  12. height: 100%;
  13. box-sizing: border-box;
  14. padding: 10px 2px 2px;
  15. background: rgba($color: $chatBg, $alpha: 0.9);
  16. }
  17. .box{
  18. position: relative;
  19. height: 100%;
  20. display: flex;
  21. flex-direction: column;
  22. }
  23. .box-hd{
  24. height: 26px;
  25. position: relative;
  26. .btn-menu{
  27. position: absolute;
  28. cursor: pointer;
  29. left: 0;
  30. top: -2px;
  31. width: 20px;
  32. height: 20px;
  33. background: url("./img/icon-menu.png") center no-repeat;
  34. &:hover{
  35. background-color: #2a2b30;
  36. }
  37. }
  38. .btn-close{
  39. position: absolute;
  40. cursor: pointer;
  41. right: 0;
  42. top: -2px;
  43. width: 20px;
  44. height: 20px;
  45. background: url("./img/icon-close.png") center no-repeat;
  46. &:hover{
  47. background-color: #2a2b30;
  48. }
  49. }
  50. .menu-extra{
  51. position: absolute;
  52. top: 24px;
  53. z-index: 10;
  54. left: 0;
  55. background: #ffffff;
  56. .info {
  57. padding: 8px 0;
  58. margin: 0 10px;
  59. border-bottom: 1px solid #dcdddf;
  60. .avatar {
  61. float: left;
  62. width: 32px;
  63. height: 32px;
  64. margin-right: 6px;
  65. margin-top: 6px;
  66. border-radius: 4px;
  67. }
  68. .avatar-bg{
  69. background-color: #f5882b;
  70. text-align: center;
  71. line-height: 32px;
  72. color: #ffffff;
  73. font-size: 14px;
  74. }
  75. .account-info{
  76. float: left;
  77. }
  78. em {
  79. font-size: 12px;
  80. color: #000000;
  81. }
  82. }
  83. .icon-arrow{
  84. display: inline-block;
  85. vertical-align: middle;
  86. margin-left: 10px;
  87. background: url('../chatMini/img/icon-arrow.png') no-repeat;
  88. width: 8px;
  89. height: 12px;
  90. }
  91. .login-out{
  92. display: block;
  93. line-height: 1.5;
  94. color: #7194c3;
  95. font-size: 12px;
  96. cursor: pointer;
  97. margin-top: 8px;
  98. }
  99. li{
  100. line-height: 30px;
  101. font-size: 12px;
  102. padding: 0 10px;
  103. display: block;
  104. &:hover{
  105. background: #dcdddf;
  106. }
  107. }
  108. a{
  109. color: #333333;
  110. display: block;
  111. text-decoration: none;
  112. }
  113. }
  114. .box-title{
  115. min-width: 200px;
  116. text-align: center;
  117. margin: 0 auto;
  118. font-size: 14px;
  119. color: $chatUiFont;
  120. }
  121. .user-tips{
  122. position: absolute;
  123. top: -2px;
  124. right: 30px;
  125. max-width: 50px;
  126. height: 20px;
  127. line-height: 20px;
  128. font-size: 0;
  129. text-align: right;
  130. overflow: hidden;
  131. &:before{
  132. margin-right: 3px;
  133. }
  134. em{
  135. vertical-align: middle;
  136. color: $chatUiFont;
  137. font-size: 12px;
  138. }
  139. }
  140. }
  141. .box-bd{
  142. height: 0;
  143. flex: 1;
  144. position: relative;
  145. background: $chatContBg;
  146. .msg-unread{
  147. position: absolute;
  148. width: 120px;
  149. left: 50%;
  150. bottom: 10px;
  151. border-radius: 20px;
  152. background: rgba(#000000, 0.5);
  153. padding: 0 5px;
  154. text-align: center;
  155. line-height: 32px;
  156. margin-left: -65px;
  157. cursor: pointer;
  158. &:hover{
  159. background: rgba(#000000, 0.3);
  160. }
  161. em{
  162. color: #ffffff;
  163. font-size: 14px;
  164. }
  165. i{
  166. transform: rotate(90deg);
  167. margin-right: 5px;
  168. }
  169. }
  170. }
  171. .scroller{
  172. height: 100%;
  173. overflow-y: scroll;
  174. &::-webkit-scrollbar {
  175. width: 8px;
  176. height: 6px;
  177. }
  178. &::-webkit-scrollbar-thumb {
  179. border-radius: 3px;
  180. -moz-border-radius: 3px;
  181. -webkit-border-radius: 3px;
  182. background-color: transparent;
  183. }
  184. &::-webkit-scrollbar-track {
  185. background-color: transparent;
  186. }
  187. &:hover{
  188. &::-webkit-scrollbar-thumb {
  189. background-color: rgba($color: #8d8a8a, $alpha: 0.2);
  190. }
  191. }
  192. }
  193. .box-ft{
  194. position: relative;
  195. background: $chatContBg;
  196. border-top: 1px solid #d6d6d6;
  197. .input-con{
  198. position: relative;
  199. display: flex;
  200. align-items: flex-end;
  201. background-color: #fafafa;
  202. padding: 6px 0;
  203. }
  204. .input-wrap{
  205. flex: 1;
  206. padding: 10px 0;
  207. background-color: #ffffff;
  208. border-radius: 4px;
  209. }
  210. .more-icon{
  211. width: 38px;
  212. height: 38px;
  213. background: url('../../assets/more-icon.png') center center no-repeat;
  214. background-size: 22px 22px;
  215. cursor: pointer;
  216. &:hover{
  217. opacity: .6;
  218. }
  219. }
  220. .emoji-icon{
  221. width: 38px;
  222. height: 38px;
  223. background: url('../../assets/m-face-icon.png') center center no-repeat;
  224. background-size: 22px 22px;
  225. cursor: pointer;
  226. &:hover{
  227. opacity: .6;
  228. }
  229. }
  230. // .btn-file{
  231. // width: 32px;
  232. // height: 37px;
  233. // background: url("../../assets/icon-file.png") center center no-repeat;
  234. // background-size: 21px 21px;
  235. // position: relative;
  236. // &:hover{
  237. // opacity: 0.7;
  238. // }
  239. // input[type=file] {
  240. // opacity: 0;
  241. // position: absolute;
  242. // top: 0;
  243. // left: 0;
  244. // width: 100%;
  245. // height: 100%;
  246. // cursor: pointer;
  247. // }
  248. // }
  249. // .btn-emoji{
  250. // width: 32px;
  251. // cursor: pointer;
  252. // height: 37px;
  253. // background: url("../../assets/icon-face.png") center center no-repeat;
  254. // background-size: 21px 21px;
  255. // &:hover{
  256. // opacity: 0.7;
  257. // }
  258. // }
  259. // .icon-packet{
  260. // width: 32px;
  261. // cursor: pointer;
  262. // height: 37px;
  263. // background: url("../../assets/icon-packet.png") center center no-repeat;
  264. // background-size: 21px 21px;
  265. // &:hover{
  266. // opacity: 0.7;
  267. // }
  268. // }
  269. .btn-send{
  270. margin-right: 4px;
  271. font-size: 12px;
  272. color: #ffffff;
  273. padding: 0 10px;
  274. height: 28px;
  275. line-height: 28px;
  276. margin-bottom: 3px;
  277. background: #2b9ff6;
  278. border-radius: 3px;
  279. cursor: pointer;
  280. &:hover{
  281. opacity: 0.8;
  282. }
  283. }
  284. form{
  285. @include flex(1);
  286. }
  287. textarea {
  288. display: block;
  289. width: 100%;
  290. height: 18px;
  291. max-height: 175px;
  292. font-size: 14px;
  293. color: #000000;
  294. line-height: 14px;
  295. padding-left: 8px;
  296. margin: 0;
  297. border: none;
  298. outline: none;
  299. background: none;
  300. box-sizing: border-box;
  301. resize: none;
  302. }
  303. .emoji-wrap{
  304. position: absolute;
  305. left: 0;
  306. right: 0;
  307. bottom: 52px;
  308. background: #ffffff;
  309. box-shadow: 1px 1px 50px rgba(0,0,0,.3);
  310. z-index: 10;
  311. }
  312. .input-ctrl{
  313. span{
  314. width: 120px;
  315. margin: 4px auto;
  316. height: 30px;
  317. line-height: 30px;
  318. color: #ffffff;
  319. font-size: 12px;
  320. text-align: center;
  321. display: block;
  322. background-image: -webkit-linear-gradient( 90deg, rgb(25,145,235) 0%, rgb(46,161,248) 100%);
  323. border-radius: 3px;
  324. &.enable{
  325. cursor: pointer;
  326. &:hover{
  327. opacity: 0.7;
  328. }
  329. }
  330. }
  331. }
  332. }
  333. .mini-control{
  334. position: fixed;
  335. right: $offsetBottom;
  336. bottom: $offsetRight;
  337. user-select: none;
  338. .at-tip{
  339. position: absolute;
  340. left: -9px;
  341. top: -9px;
  342. width: 18px;
  343. height: 18px;
  344. background: #e0273a;
  345. border-radius: 50%;
  346. overflow: hidden;
  347. font-size: 12px;
  348. line-height: 18px;
  349. color: #fff;
  350. text-align: center;
  351. }
  352. ul{
  353. @include webkitbox(1);
  354. background: $chatBg;
  355. opacity: .9;
  356. border-radius: 4px;
  357. overflow: hidden;
  358. }
  359. li{
  360. width: 60px;
  361. height: 40px;
  362. line-height: 40px;
  363. text-align: center;
  364. font-size: 0;
  365. cursor: pointer;
  366. &:hover{
  367. background: #42454c;
  368. }
  369. em{
  370. font-size: 12px;
  371. color: $chatUiFont;
  372. vertical-align: middle;
  373. padding-left: 4px;
  374. }
  375. }
  376. .msg-tips{
  377. &:before{
  378. content: "";
  379. background: url("./img/icon-meechat.png") center center no-repeat;
  380. background-size: 100%;
  381. width: 22px;
  382. height: 20px;
  383. display: inline-block;
  384. vertical-align: middle;
  385. }
  386. }
  387. }
  388. .user-tips{
  389. &:before{
  390. content: "";
  391. background: url("./img/icon-user.png") no-repeat;
  392. background-size: 100%;
  393. width: 8px;
  394. height: 9px;
  395. display: inline-block;
  396. vertical-align: middle;
  397. margin-right: 4px;
  398. }
  399. }
  400. .meechat-icon {
  401. width: 46px;
  402. height: 40px;
  403. background: url('./img/meechat-bg.png') center center no-repeat;
  404. background-size: 100%;
  405. text-align: center;
  406. border-radius: 4px;
  407. cursor: pointer;
  408. padding-top: 14px;
  409. box-sizing: border-box;
  410. &:hover{
  411. opacity: .8;
  412. }
  413. em{
  414. color: #ffffff;
  415. font-size: 12px;
  416. }
  417. }
  418. .msg-wrap{
  419. margin-bottom: 16px;
  420. }
  421. .msg-top-more{
  422. margin-top: 10px;
  423. text-align: center;
  424. i{
  425. font-size: 30px;
  426. }
  427. em{
  428. font-size: 12px;
  429. line-height: 20px;
  430. color: #999999;
  431. }
  432. }
  433. .msg-loading-icon{
  434. display: block;
  435. background: url('../../assets/loading-icon.png') no-repeat;
  436. background-size: 100%;
  437. width: 16px;
  438. height: 16px;
  439. margin: 12px auto;
  440. animation: rotate 2s linear infinite;
  441. }
  442. .tool-wrap{
  443. background-color: #f6f6f6;
  444. display: flex;
  445. padding: 16px 0;
  446. .tool-item{
  447. flex: 1;
  448. text-align: center;
  449. }
  450. .type{
  451. font-size: 14px;
  452. color: #666666;
  453. }
  454. .icon-box{
  455. width: 58px;
  456. height: 58px;
  457. margin: 0 auto;
  458. cursor: pointer;
  459. background-color: #ffffff;
  460. border-radius: 6px;
  461. border: 1px solid #efefef;
  462. box-sizing: border-box;
  463. margin-bottom: 6px;
  464. display: flex;
  465. justify-content: center;
  466. align-items: center;
  467. position: relative;
  468. &:hover{
  469. opacity: .8;
  470. }
  471. input[type=file] {
  472. opacity: 0;
  473. position: absolute;
  474. top: 0;
  475. left: 0;
  476. width: 100%;
  477. height: 100%;
  478. cursor: pointer;
  479. z-index: 4;
  480. }
  481. i{
  482. display: inline-block;
  483. }
  484. .packet-icon{
  485. background: url('../../assets/packet-icon.png') no-repeat;
  486. background-size: 100%;
  487. width: 21px;
  488. height: 26px;
  489. }
  490. .picture-icon{
  491. background: url('../../assets/pic-icon.png') no-repeat;
  492. background-size: 100%;
  493. width: 27px;
  494. height: 21px;
  495. }
  496. .audio-icon{
  497. background: url('../../assets/audio-icon.png') no-repeat;
  498. background-size: 100%;
  499. width: 18px;
  500. height: 26px;
  501. }
  502. .video-icon{
  503. background: url('../../assets/video-icon.png') no-repeat;
  504. background-size: 100%;
  505. width: 30px;
  506. height: 18px;
  507. }
  508. }
  509. }
  510. // 手机端适配
  511. .moblie-wrap{
  512. padding-top: 14px;
  513. .box-hd{
  514. height: 30px;
  515. }
  516. .box-ft{
  517. .emoji-wrap{
  518. bottom: 64px;
  519. }
  520. .btn-send{
  521. height: 36px;
  522. line-height: 36px;
  523. padding: 0 16px;
  524. font-size: 16px;
  525. }
  526. .input-ctrl span {
  527. height: 40px;
  528. line-height: 40px;
  529. font-size: 16px;
  530. }
  531. .input-con{
  532. padding: 10px 0;
  533. align-items: center;
  534. }
  535. .input-wrap{
  536. padding: 14px 0;
  537. .textarea{
  538. height: 26px;
  539. line-height: 20px;
  540. }
  541. }
  542. .more-icon{
  543. background-size: 30px 30px;
  544. }
  545. .emoji-icon{
  546. background-size: 30px 30px;
  547. margin-right: 4px;
  548. }
  549. }
  550. }