| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- // Chat (more!)
- // -------------------------
- .yui-skin-sam .yui-layout.path-mod-chat-gui_ajax {
- background-color: #fff;
- .yui-layout-unit div.yui-layout-bd-nohd,
- .yui-layout-unit div.yui-layout-bd-noft,
- .yui-layout-unit div.yui-layout-bd,
- .yui-layout-unit-right,
- .yui-layout-unit-bottom {
- border: 0;
- }
- .yui-layout-unit-right,
- .yui-layout-unit-bottom {
- .well;
- border-radius: 0;
- }
- .yui-layout-unit div.yui-layout-bd {
- background-color: transparent;
- }
- #chat-input-area table.generaltable,
- #chat-input-area table.generaltable td.cell {
- border: 0;
- padding: 3px 15px;
- white-space: nowrap;
- input {
- margin: 0 10px;
- &#input-message {
- width: 45%;
- margin: auto;
- }
- }
- a {
- margin: 0 5px;
- }
- }
- #chat-userlist {
- padding: 10px 5px;
- #users-list {
- border-top: 1px solid #ddd;
- border-bottom: 1px solid #fff;
- li {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #ddd;
- padding: 5px 10px;
- }
- img {
- margin-right: 8px;
- border: 1px solid #ccc;
- border-radius: 4px;
- max-width: none;
- }
- }
- }
- #chat-messages {
- margin: 20px 25px;
- .chat-event.course-theme {
- text-align: center;
- margin: 10px 0;
- font-size: @font-size-small;;
- color: #777;
- }
- .chat-message.course-theme {
- background-color: #fff;
- border: 1px dotted #ddd;
- border-radius: 4px;
- padding: 4px 10px;
- margin: 10px 0;
- .time {
- float: right;
- font-size: 11px;
- color: #777;
- }
- }
- .mdl-chat-my-entry .chat-message.course-theme {
- background-color:#f6f6f6;
- .user {
- font-weight: bold;
- }
- }
- }
- }
|