Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

_chat.scss 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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. }
  67. .errorMessage {
  68. color: red;
  69. }
  70. .remoteuser {
  71. color: white;
  72. }
  73. #usermsg {
  74. visibility:hidden;
  75. position: absolute;
  76. bottom: 0px;
  77. right: 0px;
  78. width: 83%;
  79. height: 30px;
  80. padding: 5px 5px 5px 0px;
  81. max-height:150px;
  82. min-height:35px;
  83. border: 0px none;
  84. background: #3a3a3a;
  85. color: #a7a7a7;
  86. box-shadow: none;
  87. border-radius:0;
  88. font-size: 10pt;
  89. line-height: 30px;
  90. overflow: hidden;
  91. resize: none;
  92. }
  93. #usermsg:hover {
  94. border: 0px none;
  95. box-shadow: none;
  96. }
  97. #chat_container.is-conversation-mode #usermsg {
  98. visibility: visible;
  99. }
  100. #nickname {
  101. position: absolute;
  102. text-align: center;
  103. color: #9d9d9d;
  104. font-size: 18px;
  105. top: 100px;
  106. left: 5px;
  107. right: 5px;
  108. width: 95%;
  109. }
  110. #chat_container.is-conversation-mode #nickname {
  111. visibility: hidden;
  112. }
  113. #nickinput {
  114. margin-top: 20px;
  115. font-size: 14px;
  116. background: #3a3a3a;
  117. box-shadow: inset 0 0 3px 2px #a7a7a7;
  118. border: 1px solid #a7a7a7;
  119. color: #a7a7a7;
  120. }
  121. #chat_container .username {
  122. float: left;
  123. padding-left: 5px;
  124. font-weight: bold;
  125. white-space: nowrap;
  126. text-overflow: ellipsis;
  127. width: 95%;
  128. overflow: hidden;
  129. }
  130. #chat_container .timestamp {
  131. float: right;
  132. padding-right: 5px;
  133. font-size: 11px;
  134. }
  135. #chat_container .usermessage {
  136. padding-top: 20px;
  137. padding-left: 5px;
  138. }
  139. .chatArrow {
  140. position: absolute;
  141. height: 15px;
  142. left: 5px;
  143. }
  144. .chatmessage {
  145. background: #3a3a3a;
  146. width: 93%;
  147. margin-left: 9px;
  148. margin-right: auto;
  149. border-radius: 5px;
  150. border-top-left-radius: 0px;
  151. margin-top: 3px;
  152. left: 5px;
  153. color: #a7a7a7;
  154. overflow: hidden;
  155. padding-bottom: 3px;
  156. }
  157. .smiley {
  158. height: 26px;
  159. }
  160. #smileys {
  161. position: absolute;
  162. bottom: 7px;
  163. right: 5px;
  164. background: white;
  165. border-radius: 50px;
  166. height: 26px;
  167. margin: auto;
  168. cursor: pointer;
  169. }
  170. #smileys img {
  171. width: 22px;
  172. padding: 2px;
  173. }
  174. #smileysarea {
  175. position: absolute;
  176. bottom: 0px;
  177. left: 0px;
  178. width: 17%;
  179. min-width: 31px;
  180. height: 40px;
  181. padding: 0px;
  182. max-height:150px;
  183. min-height:35px;
  184. border: 0px none;
  185. background: #3a3a3a;
  186. overflow: hidden;
  187. visibility: hidden;
  188. }
  189. #chat_container.is-conversation-mode #smileysarea {
  190. visibility: visible;
  191. }
  192. #smileysContainer {
  193. display: none;
  194. position: absolute;
  195. background: #3a3a3a;
  196. border-bottom: 1px solid;
  197. border-top: 1px solid;
  198. width: 100%;
  199. bottom: 10%;
  200. }
  201. #smileysContainer .smiley {
  202. padding: 7px;
  203. }
  204. .smileyContainer {
  205. width: 40px;
  206. height: 40px;
  207. display: inline-block;
  208. }
  209. .smileyContainer:hover {
  210. background: #3e3e3e;
  211. }
  212. #usermsg::-webkit-input-placeholder {
  213. line-height: 30px;
  214. }
  215. #usermsg::-webkit-scrollbar-track-piece {
  216. background: #3a3a3a;
  217. }