123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- .left{
- float: left;
- width: 262px;
- }
- .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;
- border-left: 1px solid #e5e5e5;
- 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;
- }
- }
- .user-list{
- overflow: auto;
- height: 420px;
- }
- .user-item{
- display: flex;
- padding: 8px 12px;
- text-align: left;
- &.select-list{
- cursor: pointer;
- &:hover{
- background-color: #eeeeee;
- }
- }
- &.checked{
- background-color: #d7d7d7;
- }
- .user-avatar{
- border-radius: 2px;
- margin-right: 12px;
- }
- .name{
- flex: 1;
- font-size: 12px;
- color: #686868;
- line-height: 40px;
- }
- i{
- width: 20px;
- height: 20px;
- font-size: 20px;
- color: #2a9ff6;
- margin-top: 10px;
- }
- .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: 34px;
- font-size: 12px;
- width: 100%;
- border-bottom: 1px solid #e6e6e6;
- }
- input::-webkit-input-placeholder {
- color: #999999;
- }
- }
|