123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- .left {
- float: left;
- width: 262px;
- border-right: 1px solid #e5e5e5;
- }
- .search-input {
- position: relative;
- font-size: 0;
- margin: 14px 14px 18px;
- input {
- display: block;
- width: 100%;
- background-color: #f2f2f2;
- border: none;
- height: 30px;
- line-height: 30px;
- padding-left: 40px;
- box-sizing: border-box;
- outline: none;
- font-size: 12px;
- color: #333333;
- border-radius: 2px;
- border: 1px solid #e5e5e5;
- }
- }
- .el-icon-search {
- position: absolute;
- width: 30px;
- height: 30px;
- line-height: 30px;
- top: 0;
- left: 10px;
- font-size: 20px;
- color: #666666;
- }
- .right {
- float: left;
- width: 278px;
- padding: 6px 0 14px;
- box-sizing: border-box;
- .tips {
- font-size: 12px;
- margin: 14px 12px 0;
- text-align: left;
- color: #999999;
- }
- .user-list {
- height: 390px;
- margin: 10px 0;
- }
- }
- .user-list {
- overflow: auto;
- height: 420px;
- .no-data{
- text-align: center;
- color: #999999;
- margin-top: 180px;
- font-size: 12px;
- }
- &.select-list {
- .user-item {
- cursor: pointer;
- &:hover {
- background-color: #eeeeee;
- }
- &.checked {
- &:hover{
- background-color: #d7d7d7;
- }
- }
- }
- }
- }
- .user-item {
- display: flex;
- padding: 8px 12px;
- text-align: left;
- &.checked {
- background-color: #d7d7d7;
- }
- img.user-avatar{
- background: #cccccc;
- }
- .user-avatar {
- border-radius: 2px;
- margin-right: 12px;
- }
- .name {
- flex: 1;
- font-size: 12px;
- color: #686868;
- line-height: 40px;
- @include ellipsis;
- }
- i {
- width: 20px;
- height: 20px;
- font-size: 20px;
- color: #2a9ff6;
- margin-top: 10px;
- &.is-choosed{
- color: #dbdbdd;
- }
- }
- .el-icon-circle-close {
- &:hover {
- color: #df4949;
- }
- }
- .el-icon-circle-close {
- color: #d3d3d3;
- }
- }
- .el-icon-circle-uncheck {
- border-radius: 50%;
- background-color: #e3e3e4;
- border: 1px solid #d2cdcd;
- box-sizing: border-box;
- }
- .send-btn {
- text-align: right;
- margin-right: 14px;
- }
- .invite-modal {
- padding: 0;
- }
- .modal-bd {
- padding: 0;
- }
- .group-name {
- margin: 8px 12px;
- input {
- border: none;
- outline: none;
- color: #666666;
- line-height: 28px;
- margin-top: 6px;
- font-size: 12px;
- width: 100%;
- border-bottom: 1px solid #e6e6e6;
- &:focus{
- border-color: transparent;
- background-color: #efefef;
- padding-left: 10px;
- box-sizing: border-box;
- }
- }
- input::-webkit-input-placeholder {
- color: #999999;
- }
- }
|