chat.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .chatroom-msg {
  2. background:#bbb;
  3. border-radius:5px;
  4. font-size:8px;
  5. padding:3px 5px;
  6. color:#fff;
  7. }
  8. .chatroom-left-infor {
  9. margin:10px 10px 10px 30px;
  10. width:80%;
  11. }
  12. .chatroom-right-infor {
  13. margin:10px 30px 10px 10px;
  14. }
  15. .chatroom-infor {
  16. padding:8px;
  17. border-radius:4px;
  18. display:inline-block;
  19. text-align:left;
  20. }
  21. .chatroom {
  22. font-size: 12px;
  23. position: fixed;
  24. right: -3px;
  25. bottom: -3px;
  26. width: 150px;
  27. height: 36px;
  28. z-index: 998;
  29. overflow: hidden;
  30. background: #FFF;
  31. box-shadow: -3px -2px 8px -1px rgba(0,0,0,0.2);
  32. border-radius: 4px 0px 0px 4px;
  33. transition: all 0.3s;
  34. }
  35. .chatroom-heading {
  36. margin:7px;
  37. background-color:#a5eeee;
  38. }
  39. .chatroom-feedback {
  40. display:block;
  41. width:100%;
  42. text-align:right;
  43. }
  44. .chatroom-panel {
  45. bottom:0px;
  46. }
  47. .chatroom-send {
  48. margin-bottom:2px;
  49. position: fixed;
  50. bottom:0px;
  51. }
  52. .chatroom-open {
  53. color:#f40;
  54. font-size:12px;
  55. cursor: pointer;
  56. }
  57. .chatroom .panel-body {
  58. padding:0;
  59. }
  60. .chatroom-close {
  61. color:#fff;
  62. font-size:12px;
  63. cursor: pointer;
  64. }
  65. .chatroom-open:after {
  66. content:'[展开聊天]';
  67. }
  68. .chatroom-close:after {
  69. content:'[关闭聊天]';
  70. }
  71. .form-inline .chatroom-input {
  72. display: inline-block;
  73. width: auto;
  74. vertical-align: middle;
  75. }
  76. .chatroom-input {
  77. resize: none;
  78. height:62px;
  79. width:1200px;
  80. bottom:0;
  81. outline: none;
  82. font-size: 12px;
  83. overflow-y: auto;
  84. border:none;
  85. border-right:1px solid #f2f2f5;
  86. }