chat.css 664 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .chatroom
  2. {
  3. position:relative;
  4. height:240px;
  5. background-color: #e0e0e0;
  6. border: 0px solid black;
  7. }
  8. .chat
  9. {
  10. height: 200px;
  11. overflow: auto;
  12. background-color: #fff;
  13. padding: 4px;
  14. border: 0px solid black;
  15. }
  16. .dijitTabContainer .chat {
  17. height:auto;
  18. }
  19. .input {
  20. position:absolute;
  21. bottom:0px;
  22. display:block;
  23. padding: 4px;
  24. border: 0px solid black;
  25. border-top: 1px solid black;
  26. }
  27. .phrase
  28. {
  29. width:200px;
  30. background-color:#ededed;
  31. }
  32. .username
  33. {
  34. width:145px;
  35. background-color: #ededed;
  36. }
  37. .hidden { display: none; }
  38. .from { font-weight: bold; }
  39. .alert { font-style: italic; }
  40. .dijitTitlePaneContentInner { padding:0px !important; }