Light12306/Web12306/css/ui/chat/chat-container.css

140 lines
2.5 KiB
CSS
Raw Normal View History

2014-07-25 22:28:51 +08:00
#chat_container > header {
font-weight: bold;
line-height: 30px;
font-size: 18px;
background-color: #ffe7cf;
padding: 5px;
color: #96612d;
2014-08-14 21:33:47 +08:00
margin: -13px -10px -10px -10px;
2014-07-25 22:28:51 +08:00
}
#chat_container > header > span:last-child {
font-size: 14px;
float: right;
}
#chat_container .chat-items {
position: absolute;
2014-08-14 21:33:47 +08:00
top: 35px;
2014-07-25 22:28:51 +08:00
left: 0;
right: 0;
bottom: 210px;
2014-07-29 21:19:06 +08:00
overflow-y: auto;
2014-07-25 22:28:51 +08:00
}
#chat_container .chat-items .chat-item {
padding: 5px;
border-radius: 3px;
background-color: #f9f9f9;
color: #888;
margin-bottom: 10px;
line-height: 170%;
}
2014-08-14 21:33:47 +08:00
#chat_container .chat-items .chat-item i {
margin-right: 5px;
}
2014-07-29 21:19:06 +08:00
#chat_container .chat-items .chat-item > header {
2014-07-25 22:28:51 +08:00
font-weight: bold;
2014-07-29 21:19:06 +08:00
float: left;
2014-07-25 22:28:51 +08:00
}
2014-07-29 21:19:06 +08:00
#chat_container .chat-items .chat-item > section {
display: inline;
}
#chat_container .chat-items .chat-item > time {
2014-07-25 22:28:51 +08:00
float: right;
}
#chat_container .chat-items .chat-item-alert {
2014-08-14 21:33:47 +08:00
color: #46474E;
background-color: #F8F8F8;
2014-07-25 22:28:51 +08:00
}
#chat_container .chat-items .chat-item-self {
2014-07-29 21:19:06 +08:00
color: rgb(73, 174, 73);
2014-08-14 21:33:47 +08:00
background-color: #E5F8E5;
2014-07-25 22:28:51 +08:00
}
#chat_container .chat-items .chat-item-receive {
color: rgb(147, 95, 224);
2014-08-14 21:33:47 +08:00
background-color: #e4e4ff;
2014-07-25 22:28:51 +08:00
}
#chat_container .chat-items .chat-item-private {
2014-07-29 21:19:06 +08:00
border-width: 2px;
}
2014-08-14 21:33:47 +08:00
#chat_container .chat-item-at {
color: inherit;
text-decoration: underline;
}
2014-07-25 22:28:51 +08:00
#chat_container .chat-editor {
position: absolute;
bottom: 0;
right: 0;
left: 0;
height: 200px;
}
#chat_container .chat-editor > header {
}
#chat_container .chat-editor input[type='color'] {
padding: 0;
background: none;
vertical-align: bottom;
border: 1px solid #ccc;
cursor: pointer;
}
#chat_container .chat-editor input[type='color']:hover {
background-color: #fafafa;
}
#chat_container .chat-editor > header > button {
background: none;
border: 1px solid #ccc;
padding: 4px 5px;
margin: 0;
vertical-align: bottom;
cursor: pointer;
}
#chat_container .chat-editor > header > button:hover {
background-color: #fafafa;
}
#chat_container .chat-editor > section {
overflow-y: auto;
position: absolute;
left: 0;
right: 0;
top: 35px;
bottom: 45px;
border: 1px solid #bbb;
border-radius: 5px;
padding: 10px;
}
#chat_container .chat-editor > section:focus {
outline: none;
}
#chat_container .chat-editor > header {
}
#chat_container .chat-editor > footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
#chat_container .chat-editor > footer button.button-primary {
float: right;
}