style.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. .left {
  2. float: left;
  3. width: 262px;
  4. border-right: 1px solid #e5e5e5;
  5. }
  6. .search-input {
  7. position: relative;
  8. font-size: 0;
  9. margin: 14px 14px 18px;
  10. input {
  11. display: block;
  12. width: 100%;
  13. background-color: #f2f2f2;
  14. border: none;
  15. height: 30px;
  16. line-height: 30px;
  17. padding-left: 40px;
  18. box-sizing: border-box;
  19. outline: none;
  20. font-size: 12px;
  21. color: #333333;
  22. border-radius: 2px;
  23. border: 1px solid #e5e5e5;
  24. }
  25. }
  26. .el-icon-search {
  27. position: absolute;
  28. width: 30px;
  29. height: 30px;
  30. line-height: 30px;
  31. top: 0;
  32. left: 10px;
  33. font-size: 20px;
  34. color: #666666;
  35. }
  36. .right {
  37. float: left;
  38. width: 278px;
  39. padding: 6px 0 14px;
  40. box-sizing: border-box;
  41. .tips {
  42. font-size: 12px;
  43. margin: 14px 12px 0;
  44. text-align: left;
  45. color: #999999;
  46. }
  47. .user-list {
  48. height: 390px;
  49. margin: 10px 0;
  50. }
  51. }
  52. .user-list {
  53. overflow: auto;
  54. height: 420px;
  55. .no-data{
  56. text-align: center;
  57. color: #999999;
  58. margin-top: 180px;
  59. font-size: 12px;
  60. }
  61. &.select-list {
  62. .user-item {
  63. cursor: pointer;
  64. &:hover {
  65. background-color: #eeeeee;
  66. }
  67. &.checked {
  68. &:hover{
  69. background-color: #d7d7d7;
  70. }
  71. }
  72. }
  73. }
  74. }
  75. .user-item {
  76. display: flex;
  77. padding: 8px 12px;
  78. text-align: left;
  79. &.checked {
  80. background-color: #d7d7d7;
  81. }
  82. img.user-avatar{
  83. background: #cccccc;
  84. }
  85. .user-avatar {
  86. border-radius: 2px;
  87. margin-right: 12px;
  88. }
  89. .name {
  90. flex: 1;
  91. font-size: 12px;
  92. color: #686868;
  93. line-height: 40px;
  94. @include ellipsis;
  95. }
  96. i {
  97. width: 20px;
  98. height: 20px;
  99. font-size: 20px;
  100. color: #2a9ff6;
  101. margin-top: 10px;
  102. &.is-choosed{
  103. color: #dbdbdd;
  104. }
  105. }
  106. .el-icon-circle-close {
  107. &:hover {
  108. color: #df4949;
  109. }
  110. }
  111. .el-icon-circle-close {
  112. color: #d3d3d3;
  113. }
  114. }
  115. .el-icon-circle-uncheck {
  116. border-radius: 50%;
  117. background-color: #e3e3e4;
  118. border: 1px solid #d2cdcd;
  119. box-sizing: border-box;
  120. }
  121. .send-btn {
  122. text-align: right;
  123. margin-right: 14px;
  124. }
  125. .invite-modal {
  126. padding: 0;
  127. }
  128. .modal-bd {
  129. padding: 0;
  130. }
  131. .group-name {
  132. margin: 8px 12px;
  133. input {
  134. border: none;
  135. outline: none;
  136. color: #666666;
  137. line-height: 28px;
  138. margin-top: 6px;
  139. font-size: 12px;
  140. width: 100%;
  141. border-bottom: 1px solid #e6e6e6;
  142. &:focus{
  143. border-color: transparent;
  144. background-color: #efefef;
  145. padding-left: 10px;
  146. box-sizing: border-box;
  147. }
  148. }
  149. input::-webkit-input-placeholder {
  150. color: #999999;
  151. }
  152. }