You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

130 lines
2.5 KiB

  1. .lr-chat-page {
  2. position:relative;
  3. width:100%;
  4. height:100%;
  5. padding-bottom:43px;
  6. }
  7. .lr-chat-page .lr-chat-input {
  8. position: absolute;
  9. width: 100%;
  10. height: 43px;
  11. left: 0;
  12. bottom: 0;
  13. background: #EFEFEF;
  14. padding:5px;
  15. padding-right:64px;
  16. }
  17. .lr-chat-page .lr-chat-input input {
  18. margin: 0;
  19. border: 0;
  20. outline: 0;
  21. position: relative;
  22. width: 100%;
  23. height: 100%;
  24. line-height: 40px;
  25. padding: 5px;
  26. }
  27. .lr-chat-page .lr-chat-input button {
  28. position: absolute;
  29. top: 5px;
  30. right: 5px;
  31. }
  32. .lr-chat-page .lr-chat-msgcontent {
  33. position: relative;
  34. width: 100%;
  35. height: 100%;
  36. }
  37. .lr-chat-msgcontent-list {
  38. position:relative;
  39. width:100%;
  40. margin:0;
  41. padding-top:10px;
  42. }
  43. .lr-chat-page .chatTime {
  44. position: relative;
  45. font-size: 12px;
  46. color: #FFFFFF;
  47. text-align: center;
  48. margin-bottom: 20px;
  49. }
  50. .lr-chat-page .chatTime span{
  51. background: #D8D8D8;
  52. border-radius: 3px;
  53. padding: 1px 10px;
  54. }
  55. .lr-chat-page .other, .lr-chat-page .me {
  56. margin-bottom: 20px;
  57. overflow: hidden;
  58. position: relative;
  59. }
  60. .lr-chat-page .other .arrow, .lr-chat-page .me .arrow {
  61. position: absolute;
  62. width: 0;
  63. height: 0;
  64. display: inline-block;
  65. border: 10px solid transparent;
  66. }
  67. .lr-chat-page .other img, .lr-chat-page .me img {
  68. width: 30px;
  69. height: 30px;
  70. border-radius: 3px;
  71. display: inline-block;
  72. vertical-align: middle;
  73. }
  74. .lr-chat-page .other .content, .lr-chat-page .me .content {
  75. max-width: 62%;
  76. background: #FDFDFD;
  77. border-radius: 3px;
  78. font-size: 12px;
  79. color: #666666;
  80. padding: 6px 10px;
  81. word-break: break-all;
  82. }
  83. .lr-chat-page .me .content {
  84. background: #c1dcef
  85. }
  86. .lr-chat-page .other {
  87. padding-left: 10px;
  88. }
  89. .lr-chat-page .other .arrow {
  90. left: 38px;
  91. top: 4px;
  92. border-right-color: #fff;
  93. }
  94. .lr-chat-page .other > * {
  95. float: left;
  96. }
  97. .lr-chat-page .other img {
  98. margin-right: 14px;
  99. }
  100. .lr-chat-page .me {
  101. padding-right: 10px;
  102. }
  103. .lr-chat-page .me .arrow {
  104. right: 38px;
  105. top: 4px;
  106. border-left-color: #c1dcef;
  107. }
  108. .lr-chat-page .me > * {
  109. float: right;
  110. }
  111. .lr-chat-page .me img {
  112. margin-left: 14px;
  113. }