123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- .c-panel{
- position: relative;
- width: 350px;
- height: 100%;
- background: #34363c;
- }
- .c-panel-header{
- position: relative;
- width: 66px;
- height: 100%;
- float: left;
- background: #2d2f34;
- .avatar-wrap{
- width: 50px;
- height: 50px;
- border-radius: 3px;
- overflow: hidden;
- margin: 10px auto 20px;
- cursor: pointer;
- &:hover{
- opacity: 0.8;
- }
- img{
- width: 100%;
- display: block;
- overflow: hidden;
- }
- }
- .user-avatar{
- width: 50px;
- height: 50px;
- line-height: 50px;
- }
- }
- .panel-ctrls{
- li{
- color: #73849f;
- height: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 20px;
- cursor: pointer;
- position: relative;
- &.current{
- color: #2982c7;
- background: #212328;
- cursor: default;
- &:after{
- content: "";
- position: absolute;
- left: 0;
- height: 10px;
- width: 2px;
- background: #2982c7;
- top: 50%;
- margin-top: -5px;
- }
- .mee-icon-chat{
- background: url('../../assets/chat-icon-active.png')
- }
- .friend-icon-chat{
- background: url('../../assets/friend-icon-active.png')
- }
- }
- }
- }
- .c-panel-nav{
- margin-left: 66px;
- height: 100%;
- @include webkitbox(2);
- }
- .panel-searbar{
- position: relative;
- margin: 0 20px 20px;
- padding-top: 30px;
- @include webkitbox(1);
- .input-con{
- background: #2c2e34;
- color: #656b77;
- height: 30px;
- position: relative;
- @include flex(1);
- }
- input{
- font-size: 12px;
- color: #b1c0d8;
- line-height: 30px;
- background: none;
- margin: 0;
- border: none;
- outline: none;
- padding: 0 0 0 30px;
- display: block;
- width: 100%;
- box-sizing: border-box;
- }
- .el-icon-search{
- font-size: 20px;
- position: absolute;
- text-align: center;
- top: 0;
- left: 0;
- width: 30px;
- height: 30px;
- line-height: 30px;
- }
- .el-icon-plus{
- font-size: 16px;
- width: 30px;
- height: 30px;
- line-height: 30px;
- border-radius: 3px;
- background: #444750;
- color: #ffffff;
- text-align: center;
- margin-left: 10px;
- display: block;
- cursor: pointer;
- &:hover{
- opacity: 0.6;
- }
- }
- }
- .chat-list{
- overflow-y: auto;
- @include flex(1);
- }
- .mee-icon-chat{
- display: inline-block;
- vertical-align: middle;
- background: url('../../assets/chat-icon.png') center center no-repeat;
- width: 25px;
- height: 22px;
- }
- .friend-icon-chat{
- display: inline-block;
- vertical-align: middle;
- background: url('../../assets/friend-icon.png') center center no-repeat;
- width: 25px;
- height: 21px;
- }
- .group-recommand{
- height: 40px;
- line-height: 40px;
- padding: 6px 13px 20px 19px;
- color: #ffffff;
- cursor: pointer;
- border-bottom: 1px solid #3e4046;
- margin-bottom: 10px;
- .group-icon{
- float: left;
- vertical-align: middle;
- height: 40px;
- width: 40px;
- border-radius: 4px;
- line-height: 40px;
- background: url('../../assets/group-icon.png') center center no-repeat;
- background-color: #2ca0f7;
- margin-right: 10px;
- }
- .title{
- margin-left: 50px;
- font-size: 14px;
- i{
- float: right;
- margin-top: 14px;
- }
- }
- }
- .ext{
- position: absolute;
- width: 24px;
- height: 24px;
- border-radius: 50%;
- background-color: #2398f1;
- line-height: 24px;
- font-size: 12px;
- text-align: center;
- color: #ffffff;
- right: 4px;
- top: 12px;
- }
|