style.scss 2.9 KB

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