chat.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. .page-chat {
  2. padding: 10px 0;
  3. background: #ffffff;
  4. }
  5. .message-form-chat .nav {
  6. margin-bottom: 0;
  7. }
  8. .message-form-chat .nav-tabs .active a {
  9. background-color: #f6f6f6;
  10. }
  11. .message-student .chat-image, .message-teacher .chat-image {
  12. width: 80px;
  13. height: auto;
  14. max-height: 80px;
  15. display: inline-block;
  16. vertical-align: top;
  17. -webkit-border-radius: 10px;
  18. -moz-border-radius: 10px;
  19. border-radius: 10px;
  20. border: 2px solid #fff;
  21. box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  22. }
  23. .message-student .content-message {
  24. background-color: #F9F2E0;
  25. color: #000;
  26. margin-bottom: 15px;
  27. border: 1px solid #F9F2E0;
  28. border-right: 2px #F7E5B9;
  29. border-bottom: 3px #F7E5B9;
  30. border-radius: 10px;
  31. display: inline-block;
  32. font-size: 13px;
  33. padding: 15px;
  34. vertical-align: top;
  35. width: calc(100% - 100px);
  36. }
  37. .message-teacher .icon-message {
  38. display: inline-block;
  39. margin-left: -6px;
  40. margin-top: 10px;
  41. width: 0;
  42. height: 0;
  43. border-top: 0 solid transparent;
  44. border-bottom: 15px solid transparent;
  45. border-left: 15px solid #EBEFF3;
  46. }
  47. .message-student .icon-message {
  48. display: inline-block;
  49. margin-right: -6px;
  50. margin-top: 10px;
  51. width: 0;
  52. height: 0;
  53. border-top: 0 solid transparent;
  54. border-bottom: 15px solid transparent;
  55. border-right: 15px solid #F9F2E0;
  56. }
  57. .message-teacher .content-message {
  58. background-color: #EBEFF3;
  59. color: #000;
  60. margin-bottom: 15px;
  61. border: 1px solid #EBEFF3;
  62. border-bottom: 3px #DEE1E5;
  63. border-left: 2px #DEE1E5;
  64. border-radius: 10px;
  65. display: inline-block;
  66. font-size: 13px;
  67. padding: 15px;
  68. vertical-align: top;
  69. width: calc(100% - 100px);
  70. }
  71. .message-teacher .message-date {
  72. color: #666;
  73. font-style: italic;
  74. font-size: 10px;
  75. text-align: right;
  76. margin-right: 35px;
  77. margin-top: 10px;
  78. }
  79. .message-student .message-date {
  80. color: #666;
  81. font-style: italic;
  82. font-size: 10px;
  83. text-align: right;
  84. margin-top: 10px;
  85. }
  86. .chat-user {
  87. background-color: #EEEEEE;
  88. border: 1px solid #E2E2E2;
  89. border-radius: 10px;
  90. color: #666;
  91. margin-bottom: 5px;
  92. padding: 10px;
  93. cursor: pointer;
  94. }
  95. .chat-user .user-image-chat {
  96. border: 2px solid #FFF;
  97. border-radius: 10px;
  98. display: inline-block;
  99. height: auto;
  100. margin-right: 10px;
  101. max-height: 40px;
  102. float: left;
  103. width: 40px;
  104. }
  105. .emoticons-chat img {
  106. width: 24px;
  107. border: none;
  108. }
  109. .message-form-chat {
  110. margin-top: 10px;
  111. padding: 5px;
  112. -webkit-border-radius: 10px;
  113. -moz-border-radius: 10px;
  114. border-radius: 10px;
  115. background: #EEEEEE;
  116. }
  117. .emoji-menu {
  118. margin-left: -234px;
  119. margin-top: -224px;
  120. width: 468px;
  121. }
  122. .emoji-wysiwyg-editor-preview,
  123. .emoji-wysiwyg-editor {
  124. padding: 3%;
  125. height: 50px;
  126. background-color: #ffffff;
  127. -webkit-border-radius: 10px;
  128. -moz-border-radius: 10px;
  129. border-radius: 10px;
  130. border: 1px solid #EEEEEE;
  131. color: #666;
  132. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) inset;
  133. }
  134. #chat-tabs .tab-content {
  135. margin-top: 15px;
  136. }
  137. .chat-history {
  138. height: 400px;
  139. overflow: auto;
  140. }
  141. #chat-users {
  142. margin-left: 0;
  143. }
  144. #chat-users div.chat-user > div {
  145. padding: 5px;
  146. }