123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /**message缩写为msg**/
- .content-box-left {
- width: 300px;
- height: 100%;
- background-color: #fff;
- position: relative;
- border-right: 1px solid #ddd;
- }
- .content-box-right {
- position: absolute;
- left: 310px;
- right: 0px;
- bottom: 0px;
- top: 0px;
- }
- .content-box-top{
- width: 100%;
- height: 200px;
- padding: 8px;
- position: relative;
- border-bottom: 1px solid #ddd;
- }
- .content-box-bottom{
- position: absolute;
- left: 0px;
- right: 0px;
- bottom: 0px;
- top: 200px;
- padding: 10px;
- }
- .content-title{
- width: 100%;
- height: 30px;
- line-height: 30px;
- text-indent: 10px;
- margin-bottom: 8px;
- }
- .content-list{
- position: absolute;
- top: 45px;
- bottom: 0px;
- left: 10px;
- right: 10px;
- overflow-y: auto;
- }
- .content-list-item{
- width: 100%;
- height: 60px;
- margin-bottom: 5px;
- cursor: pointer;
- border-radius: 5px;
- }
- .content-list-item.active{
- background: #dddddd;
- }
- .content-list-item>div{
- float: left;
- height: 60px;
- line-height: 60px;
- }
- .content-list-item .icon{
- width: 60px;
- height: 60px;
- margin-left: 15px;
- position: relative;
- border-radius: 8px;
- }
- .content-list-item .icon .userAdd{
- position: absolute;
- background-image: url("../img/userAdd.png");
- background-color: #FF9F00;
- top: 10px;
- left: 10px;
- right: 10px;
- bottom: 10px;
- background-repeat: no-repeat;
- background-size: 28px 28px;
- background-position: center center;
- border-radius: 5px;
- }
- .content-list-item .icon .user{
- position: absolute;
- background-image: url("../img/user.png");
- top: 10px;
- left: 10px;
- right: 10px;
- bottom: 10px;
- background-color: #0089FF;
- background-repeat: no-repeat;
- background-size: 28px 28px;
- background-position: center center;
- border-radius: 5px;
- }
- .content-list-item .title{
- width: 180px;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- .content-right-title{
- width: 100%;
- height: 30px;
- line-height: 30px;
- margin-bottom: 5px;
- text-indent: 10px;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
|