157 lines
2.1 KiB
Plaintext
Executable File
157 lines
2.1 KiB
Plaintext
Executable File
#chat {
|
|
position:absolute;
|
|
right: 0;
|
|
top: 65px;
|
|
width:20%;
|
|
background: #fff;
|
|
/*z-index: @z-index-chat;*/
|
|
overflow: hidden;
|
|
border-left:1px solid #ccc;
|
|
height:660px;
|
|
margin-bottom: 10px;
|
|
|
|
h3 {
|
|
background:#f7f7f7;
|
|
font-size: 1em;
|
|
line-height: 2em;
|
|
font-weight: bold;
|
|
color: #666;
|
|
border-bottom: 1px solid #d7d7d7;
|
|
padding: 5px 10px;
|
|
margin:0;
|
|
}
|
|
}
|
|
|
|
#chatbar-contents {
|
|
padding-left:20px;
|
|
padding-right:5px;
|
|
padding-top:2px;
|
|
padding-bottom:10px;
|
|
height:70%;
|
|
|
|
#chatScrollWindow {
|
|
padding-right:5px;
|
|
overflow: scroll;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
#chat-options-bar {
|
|
width:100%;
|
|
position:relative;
|
|
border-bottom:1px solid #ccc;
|
|
|
|
button {
|
|
/*.rounded(0);*/
|
|
}
|
|
.btn {
|
|
padding:0 5px;
|
|
font-size:12px;
|
|
line-height:22px;
|
|
border-top:0;
|
|
border-bottom:0;
|
|
border-left:0;
|
|
border-right:1px solid #ccc;
|
|
display:block;
|
|
float:left;
|
|
}
|
|
}
|
|
|
|
#chat-input-wrapper {
|
|
position:absolute;
|
|
bottom:0;
|
|
}
|
|
|
|
#chat-user-list {
|
|
padding:5px;
|
|
li {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.chat-message-wrapper {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.chat-message {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
|
|
.chat-username {
|
|
font-weight:bold;
|
|
color:#333;
|
|
}
|
|
|
|
.chat-timestamp {
|
|
font-weight:bold;
|
|
color:##C0C0C0;
|
|
float:right;
|
|
}
|
|
|
|
#chat-messages {
|
|
clear: both;
|
|
overflow-y: auto;
|
|
overflow: auto;
|
|
overflow-x: hidden;
|
|
/*position: relative;*/
|
|
padding: 10px;
|
|
word-break: break-all;
|
|
|
|
/*the code I added to make scroll work*/
|
|
position: absolute;
|
|
bottom: 32px;
|
|
top: 60px;
|
|
right:25px;
|
|
left: 0px;
|
|
}
|
|
|
|
.publicChatTab{
|
|
|
|
}
|
|
|
|
.optionsChatTab{
|
|
|
|
}
|
|
|
|
.privateChatTab{
|
|
|
|
}
|
|
|
|
.chatGreeting {
|
|
font-size: 10px;
|
|
color: blue;
|
|
|
|
a{
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.private-chat-user-list {
|
|
font-size:12px;
|
|
}
|
|
|
|
.private-chat-user-list :hover {
|
|
font-size:14px;
|
|
background: #0099FF;
|
|
font-style:italic;
|
|
}
|
|
|
|
.private-chat-user-entry {
|
|
|
|
}
|
|
|
|
.private-chat-user-box {
|
|
border: solid 1px grey;
|
|
height:100%;
|
|
width: 90%;
|
|
padding: 5px;
|
|
}
|
|
|
|
#newMessageInput {
|
|
width: 95%;
|
|
height:40px;
|
|
}
|
|
|
|
|