chatRoom.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .c-view{
  2. height: 100%;
  3. background: #eeeeee;
  4. width: 716px;
  5. position: relative;
  6. }
  7. .box{
  8. @include webkitbox(2);
  9. }
  10. .box-hd{
  11. .title-wrap{
  12. position: relative;
  13. padding: 10px 0;
  14. border-bottom: 1px solid #d6d6d6;
  15. font-size: 14px;
  16. color: #000;
  17. text-align: center;
  18. line-height: 40px;
  19. }
  20. }
  21. .box-bd{
  22. // @include flex(1);
  23. padding: 0 19px;
  24. // padding: 0 9px 0 19px;
  25. height: 530px;
  26. // overflow: auto;
  27. .bar{
  28. &::-webkit-scrollbar {
  29. width: 0;
  30. height: 0;
  31. }
  32. }
  33. .msg-unread{
  34. border-radius: 20px;
  35. background: rgba(#000000, 0.5);
  36. padding: 0 10px;
  37. text-align: center;
  38. line-height: 32px;
  39. position: absolute;
  40. width: 120px;
  41. left: 50%;
  42. bottom: 10px;
  43. margin-left: -65px;
  44. cursor: pointer;
  45. &:hover{
  46. background: rgba(#000000, 0.3);
  47. }
  48. em{
  49. color: #ffffff;
  50. font-size: 14px;
  51. }
  52. i{
  53. transform: rotate(90deg);
  54. margin-right: 5px;
  55. }
  56. }
  57. }
  58. .el-icon-more{
  59. float: right;
  60. width: 40px;
  61. height: 40px;
  62. line-height: 40px;
  63. cursor: pointer;
  64. color: #333333;
  65. font-size: 20px;
  66. }
  67. .msg-wrap{
  68. margin-bottom: 16px;
  69. }
  70. .msg-top-more{
  71. margin-top: 10px;
  72. text-align: center;
  73. i{
  74. font-size: 30px;
  75. }
  76. em{
  77. font-size: 14px;
  78. line-height: 24px;
  79. color: #999999;
  80. }
  81. }
  82. .msg-loading-icon{
  83. display: block;
  84. background: url('../../assets/loading-icon.png') no-repeat;
  85. background-size: 100%;
  86. width: 16px;
  87. height: 16px;
  88. margin: 20px auto;
  89. animation: rotate 2s linear infinite;
  90. }