chat.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. // Chat (more!)
  2. // -------------------------
  3. .yui-skin-sam .yui-layout.path-mod-chat-gui_ajax {
  4. background-color: #fff;
  5. .yui-layout-unit div.yui-layout-bd-nohd,
  6. .yui-layout-unit div.yui-layout-bd-noft,
  7. .yui-layout-unit div.yui-layout-bd,
  8. .yui-layout-unit-right,
  9. .yui-layout-unit-bottom {
  10. border: 0;
  11. }
  12. .yui-layout-unit-right,
  13. .yui-layout-unit-bottom {
  14. .well;
  15. border-radius: 0;
  16. }
  17. .yui-layout-unit div.yui-layout-bd {
  18. background-color: transparent;
  19. }
  20. #chat-input-area table.generaltable,
  21. #chat-input-area table.generaltable td.cell {
  22. border: 0;
  23. padding: 3px 15px;
  24. white-space: nowrap;
  25. input {
  26. margin: 0 10px;
  27. &#input-message {
  28. width: 45%;
  29. margin: auto;
  30. }
  31. }
  32. a {
  33. margin: 0 5px;
  34. }
  35. }
  36. #chat-userlist {
  37. padding: 10px 5px;
  38. #users-list {
  39. border-top: 1px solid #ddd;
  40. border-bottom: 1px solid #fff;
  41. li {
  42. border-top: 1px solid #fff;
  43. border-bottom: 1px solid #ddd;
  44. padding: 5px 10px;
  45. }
  46. img {
  47. margin-right: 8px;
  48. border: 1px solid #ccc;
  49. border-radius: 4px;
  50. max-width: none;
  51. }
  52. }
  53. }
  54. #chat-messages {
  55. margin: 20px 25px;
  56. .chat-event.course-theme {
  57. text-align: center;
  58. margin: 10px 0;
  59. font-size: @font-size-small;;
  60. color: #777;
  61. }
  62. .chat-message.course-theme {
  63. background-color: #fff;
  64. border: 1px dotted #ddd;
  65. border-radius: 4px;
  66. padding: 4px 10px;
  67. margin: 10px 0;
  68. .time {
  69. float: right;
  70. font-size: 11px;
  71. color: #777;
  72. }
  73. }
  74. .mdl-chat-my-entry .chat-message.course-theme {
  75. background-color:#f6f6f6;
  76. .user {
  77. font-weight: bold;
  78. }
  79. }
  80. }
  81. }