index.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /**message缩写为msg**/
  2. .content-box-left {
  3. width: 300px;
  4. height: 100%;
  5. background-color: #fff;
  6. position: relative;
  7. border-right: 1px solid #ddd;
  8. }
  9. .content-box-right {
  10. position: absolute;
  11. left: 310px;
  12. right: 0px;
  13. bottom: 0px;
  14. top: 0px;
  15. }
  16. .content-box-top{
  17. width: 100%;
  18. height: 200px;
  19. padding: 8px;
  20. position: relative;
  21. border-bottom: 1px solid #ddd;
  22. }
  23. .content-box-bottom{
  24. position: absolute;
  25. left: 0px;
  26. right: 0px;
  27. bottom: 0px;
  28. top: 200px;
  29. padding: 10px;
  30. }
  31. .content-title{
  32. width: 100%;
  33. height: 30px;
  34. line-height: 30px;
  35. text-indent: 10px;
  36. margin-bottom: 8px;
  37. }
  38. .content-list{
  39. position: absolute;
  40. top: 45px;
  41. bottom: 0px;
  42. left: 10px;
  43. right: 10px;
  44. overflow-y: auto;
  45. }
  46. .content-list-item{
  47. width: 100%;
  48. height: 60px;
  49. margin-bottom: 5px;
  50. cursor: pointer;
  51. border-radius: 5px;
  52. }
  53. .content-list-item.active{
  54. background: #dddddd;
  55. }
  56. .content-list-item>div{
  57. float: left;
  58. height: 60px;
  59. line-height: 60px;
  60. }
  61. .content-list-item .icon{
  62. width: 60px;
  63. height: 60px;
  64. margin-left: 15px;
  65. position: relative;
  66. border-radius: 8px;
  67. }
  68. .content-list-item .icon .userAdd{
  69. position: absolute;
  70. background-image: url("../img/userAdd.png");
  71. background-color: #FF9F00;
  72. top: 10px;
  73. left: 10px;
  74. right: 10px;
  75. bottom: 10px;
  76. background-repeat: no-repeat;
  77. background-size: 28px 28px;
  78. background-position: center center;
  79. border-radius: 5px;
  80. }
  81. .content-list-item .icon .user{
  82. position: absolute;
  83. background-image: url("../img/user.png");
  84. top: 10px;
  85. left: 10px;
  86. right: 10px;
  87. bottom: 10px;
  88. background-color: #0089FF;
  89. background-repeat: no-repeat;
  90. background-size: 28px 28px;
  91. background-position: center center;
  92. border-radius: 5px;
  93. }
  94. .content-list-item .title{
  95. width: 180px;
  96. overflow: hidden;
  97. text-overflow:ellipsis;
  98. white-space: nowrap;
  99. }
  100. .content-right-title{
  101. width: 100%;
  102. height: 30px;
  103. line-height: 30px;
  104. margin-bottom: 5px;
  105. text-indent: 10px;
  106. overflow: hidden;
  107. text-overflow:ellipsis;
  108. white-space: nowrap;
  109. }