Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. #chat_container * {
  2. -webkit-user-select: text;
  3. user-select: text;
  4. }
  5. #chatconversation {
  6. visibility: hidden;
  7. position: relative;
  8. top: 5px;
  9. padding: 5px;
  10. text-align: left;
  11. line-height: 20px;
  12. font-size: 10pt;
  13. width: 100%;
  14. height: 90%;
  15. overflow: auto;
  16. word-wrap: break-word;
  17. a:link {
  18. color: rgb(184, 184, 184);
  19. }
  20. a:visited {
  21. color: white;
  22. }
  23. a:hover {
  24. color: rgb(213, 213, 213);
  25. }
  26. a:active {
  27. color: black;
  28. }
  29. &::-webkit-scrollbar {
  30. background: #06a5df;
  31. width: 7px;
  32. }
  33. &::-webkit-scrollbar-button {
  34. display: none;
  35. }
  36. &::-webkit-scrollbar-track {
  37. background: black;
  38. }
  39. &::-webkit-scrollbar-track-piece {
  40. background: black;
  41. }
  42. &::-webkit-scrollbar-thumb {
  43. background: #06a5df;
  44. border-radius: 4px;
  45. }
  46. }
  47. #chat_container.is-conversation-mode #chatconversation {
  48. visibility: visible;
  49. }
  50. .localuser {
  51. color: #087dba;
  52. }
  53. .use-new-toolbox {
  54. .chatmessage {
  55. color: white;
  56. }
  57. .localuser {
  58. color: #4C9AFF;
  59. }
  60. .remoteuser {
  61. color: #B8C7E0;
  62. }
  63. #usermsg {
  64. color: white;
  65. }
  66. .chatmessage,
  67. #smileysarea,
  68. #smileysContainer,
  69. #usermsg {
  70. background-color: $newToolbarBackgroundColor;
  71. }
  72. .smileyContainer:hover {
  73. background-color: $newToolbarButtonToggleColor;
  74. border-radius: 5px;
  75. cursor: pointer;
  76. }
  77. }
  78. .errorMessage {
  79. color: red;
  80. }
  81. .remoteuser {
  82. color: white;
  83. }
  84. #usermsg {
  85. visibility:hidden;
  86. position: absolute;
  87. bottom: 0px;
  88. right: 0px;
  89. width: 83%;
  90. height: 30px;
  91. padding: 5px 5px 5px 0px;
  92. max-height:150px;
  93. min-height:35px;
  94. border: 0px none;
  95. background: #3a3a3a;
  96. color: #a7a7a7;
  97. box-shadow: none;
  98. border-radius:0;
  99. font-size: 10pt;
  100. line-height: 30px;
  101. overflow: hidden;
  102. resize: none;
  103. }
  104. #usermsg:hover {
  105. border: 0px none;
  106. box-shadow: none;
  107. }
  108. #chat_container.is-conversation-mode #usermsg {
  109. visibility: visible;
  110. }
  111. #nickname {
  112. position: absolute;
  113. text-align: center;
  114. color: #9d9d9d;
  115. font-size: 18px;
  116. top: 100px;
  117. left: 5px;
  118. right: 5px;
  119. width: 95%;
  120. }
  121. #chat_container.is-conversation-mode #nickname {
  122. visibility: hidden;
  123. }
  124. #nickinput {
  125. margin-top: 20px;
  126. font-size: 14px;
  127. background: #3a3a3a;
  128. box-shadow: inset 0 0 3px 2px #a7a7a7;
  129. border: 1px solid #a7a7a7;
  130. color: #a7a7a7;
  131. }
  132. #chat_container .username {
  133. float: left;
  134. padding-left: 5px;
  135. font-weight: bold;
  136. white-space: nowrap;
  137. text-overflow: ellipsis;
  138. width: 95%;
  139. overflow: hidden;
  140. }
  141. #chat_container .timestamp {
  142. float: right;
  143. padding-right: 5px;
  144. font-size: 11px;
  145. }
  146. #chat_container .usermessage {
  147. padding-top: 20px;
  148. padding-left: 5px;
  149. }
  150. .chatArrow {
  151. position: absolute;
  152. height: 15px;
  153. left: 5px;
  154. }
  155. .chatmessage {
  156. background: #3a3a3a;
  157. width: 93%;
  158. margin-left: 9px;
  159. margin-right: auto;
  160. border-radius: 5px;
  161. border-top-left-radius: 0px;
  162. margin-top: 3px;
  163. left: 5px;
  164. color: #a7a7a7;
  165. overflow: hidden;
  166. padding-bottom: 3px;
  167. }
  168. .smiley {
  169. height: 26px;
  170. }
  171. #smileys {
  172. position: absolute;
  173. bottom: 7px;
  174. right: 5px;
  175. background: white;
  176. border-radius: 50px;
  177. height: 26px;
  178. margin: auto;
  179. cursor: pointer;
  180. }
  181. #smileys img {
  182. width: 22px;
  183. padding: 2px;
  184. }
  185. #smileysarea {
  186. position: absolute;
  187. bottom: 0px;
  188. left: 0px;
  189. width: 17%;
  190. min-width: 31px;
  191. height: 40px;
  192. padding: 0px;
  193. max-height:150px;
  194. min-height:35px;
  195. border: 0px none;
  196. background: #3a3a3a;
  197. overflow: hidden;
  198. visibility: hidden;
  199. }
  200. #chat_container.is-conversation-mode #smileysarea {
  201. visibility: visible;
  202. }
  203. #smileysContainer {
  204. display: none;
  205. position: absolute;
  206. background: #3a3a3a;
  207. border-bottom: 1px solid;
  208. border-top: 1px solid;
  209. width: 100%;
  210. bottom: 10%;
  211. }
  212. #smileysContainer .smiley {
  213. padding: 7px;
  214. }
  215. .smileyContainer {
  216. width: 40px;
  217. height: 40px;
  218. display: inline-block;
  219. }
  220. .smileyContainer:hover {
  221. background: #3e3e3e;
  222. }
  223. #usermsg::-webkit-input-placeholder {
  224. line-height: 30px;
  225. }
  226. #usermsg::-webkit-scrollbar-track-piece {
  227. background: #3a3a3a;
  228. }