2019-04-12 17:47:30 +10:00
|
|
|
.server-menu ul#server-menu-profiles {
|
2019-04-10 17:42:44 +10:00
|
|
|
top: 0;
|
|
|
|
bottom: 56px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
2019-04-12 17:47:30 +10:00
|
|
|
#chats-menu ul {
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 240px;
|
2019-04-13 16:34:16 +10:00
|
|
|
width: 120px;
|
2019-04-12 17:47:30 +10:00
|
|
|
background-color: #BBB;
|
2019-04-13 16:34:16 +10:00
|
|
|
overflow-y: auto;
|
2019-04-12 17:47:30 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
#users-menu ul {
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2019-04-13 14:40:31 +10:00
|
|
|
width: 120px;
|
2019-04-12 17:47:30 +10:00
|
|
|
background-color: #BBB;
|
2019-04-13 16:34:16 +10:00
|
|
|
overflow-y: auto;
|
2019-04-12 17:47:30 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu-vertical ul {
|
2019-04-10 17:42:44 +10:00
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #CCC;
|
|
|
|
position: fixed;
|
2019-04-12 17:47:30 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
.server-menu ul {
|
|
|
|
width: 240px;
|
2019-04-10 17:42:44 +10:00
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
2019-04-12 17:47:30 +10:00
|
|
|
.menu-vertical ul li a {
|
2019-04-10 17:42:44 +10:00
|
|
|
display: block;
|
|
|
|
padding: 20px;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2019-04-12 17:47:30 +10:00
|
|
|
.menu-vertical ul li a:hover {
|
2019-04-10 17:42:44 +10:00
|
|
|
background-color: #AAA;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-main {
|
|
|
|
padding-left: 240px;
|
|
|
|
}
|
2019-04-13 10:10:18 +10:00
|
|
|
|
|
|
|
/*.add-chat {
|
|
|
|
text-align: center;
|
|
|
|
background-color: #BBC;
|
|
|
|
}*/
|
|
|
|
|
2019-04-13 16:34:16 +10:00
|
|
|
#chat-content {
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 360px;
|
|
|
|
right: 120px;
|
|
|
|
overflow-y: auto;
|
|
|
|
position: fixed;
|
|
|
|
padding: 10px;
|
2019-04-13 14:40:31 +10:00
|
|
|
}
|
|
|
|
|
2019-04-16 16:43:55 +10:00
|
|
|
#chat-area {
|
|
|
|
padding: 0 120px;
|
|
|
|
}
|
|
|
|
|
2019-04-13 16:34:16 +10:00
|
|
|
#chat-content-send {
|
2019-04-13 14:40:31 +10:00
|
|
|
position: fixed;
|
2019-04-13 16:34:16 +10:00
|
|
|
left: 360px;
|
2019-04-13 14:40:31 +10:00
|
|
|
right: 120px;
|
|
|
|
bottom: 0;
|
|
|
|
padding: 12px;
|
|
|
|
background-color: #CCD;
|
2019-04-13 10:10:18 +10:00
|
|
|
}
|
2019-04-16 16:43:55 +10:00
|
|
|
|
|
|
|
.chat-content-message {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
2019-04-17 08:53:12 +10:00
|
|
|
.chat-content-message div
|
|
|
|
{
|
|
|
|
padding: 8px;
|
|
|
|
margin: 4px;
|
|
|
|
border-radius: 6px;
|
|
|
|
background-color: #CCD;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-content-message p.message-header {
|
|
|
|
margin: 8px 12px;
|
|
|
|
}
|
|
|
|
|
2019-04-16 16:43:55 +10:00
|
|
|
.chat-content-message.sender {
|
|
|
|
float: right;
|
|
|
|
}
|
2019-04-17 08:53:12 +10:00
|
|
|
|
|
|
|
.chat-content-message.sender div {
|
|
|
|
background-color: #AAE;
|
|
|
|
}
|