style.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. .user-avatar {
  83. border-radius: 2px;
  84. margin-right: 12px;
  85. }
  86. .name {
  87. flex: 1;
  88. font-size: 12px;
  89. color: #686868;
  90. line-height: 40px;
  91. @include ellipsis;
  92. }
  93. i {
  94. width: 20px;
  95. height: 20px;
  96. font-size: 20px;
  97. color: #2a9ff6;
  98. margin-top: 10px;
  99. &.is-choosed{
  100. color: #dbdbdd;
  101. }
  102. }
  103. .el-icon-circle-close {
  104. &:hover {
  105. color: #df4949;
  106. }
  107. }
  108. .el-icon-circle-close {
  109. color: #d3d3d3;
  110. }
  111. }
  112. .el-icon-circle-uncheck {
  113. border-radius: 50%;
  114. background-color: #e3e3e4;
  115. border: 1px solid #d2cdcd;
  116. box-sizing: border-box;
  117. }
  118. .send-btn {
  119. text-align: right;
  120. margin-right: 14px;
  121. }
  122. .invite-modal {
  123. padding: 0;
  124. }
  125. .modal-bd {
  126. padding: 0;
  127. }
  128. .group-name {
  129. margin: 8px 12px;
  130. input {
  131. border: none;
  132. outline: none;
  133. color: #666666;
  134. line-height: 28px;
  135. margin-top: 6px;
  136. font-size: 12px;
  137. width: 100%;
  138. border-bottom: 1px solid #e6e6e6;
  139. &:focus{
  140. border-color: transparent;
  141. background-color: #efefef;
  142. padding-left: 10px;
  143. box-sizing: border-box;
  144. }
  145. }
  146. input::-webkit-input-placeholder {
  147. color: #999999;
  148. }
  149. }