bigbluebutton-Github/labs/meteor-client/client/stylesheets/chat.less
2014-08-18 10:29:38 -07:00

94 lines
1.7 KiB
Plaintext
Executable File

.chat{
list-style: none;
margin: 0px;
padding: 0px;
}
#chat {
background-color: #f5f5f5;
border: 1px solid #ccc;
float: left;
min-height:500px;
min-width:300px;
overflow: hidden;
width: 25%;
}
.chat li{
border-bottom: 1px dotted #B3A9A9;
margin: 0px;
padding-bottom: 5px;
padding-left: 15px;
padding-right: 15px;
padding-top: 5px;
word-wrap:break-word;
}
.chat li:nth-child(even) {
background-color: rgb(245,245,245);
}
#chatbar-contents{
background-color: #fff;
height:90%;
padding-left: 0px;
padding-right: 0px;
width:100%;
}
#chatbody{
height:80%;
overflow-y: scroll;
padding-left: 0px;
padding-right: 0px;
}
.chatGreeting {
color: blue;
margin-top:5px;
}
.chat-input-wrapper {
margin-left:20px;
}
#chat-options-bar {
border-bottom:1px solid #ccc;
position:relative;
width:100%;
}
#chat-user-list {
padding:5px;
}
#newMessageInput {
height:40px;
width: 80%;
margin-top:6px;
padding:5px;
}
.optionsBar{
padding-top:15px;
padding-left: 15px;
height:100%;
}
.panel-footer{
padding-top:0px;
position:relative;
bottom:0px;
}
.privateChatTab{}
.publicChatTab{}
.private-chat-user-box {
border: solid 1px grey;
padding: 5px;
width: 90%;
height:60%;
}
.private-chat-user-entry {}
.private-chat-user-list {
font-size:12px;
}
.private-chat-user-list :hover {
background: #0099FF;
font-size:14px;
font-style:italic;
}
#sendMessageButton{
height:40px;
margin-left: 10px;
background-color: #D7D7D7
}
.tab{}