bigbluebutton-Github/labs/bbb-html5-client/assets/css/chat.less

84 lines
1.1 KiB
Plaintext
Raw Normal View History

#chat {
display:none;
right: 0;
//top: 0;
bottom: 0vh;
width: auto;
background: #fff;
z-index: @z-index-chat;
overflow: hidden;
border-left:1px solid #ccc;
2013-11-02 01:47:53 +08:00
height:94vh;
2013-11-01 22:58:09 +08:00
h3 {
2013-11-02 01:47:53 +08:00
background:#f7f7f7;
font-size: 1em;
line-height: 2em;
font-weight: bold;
color: #666;
border-bottom: 1px solid #d7d7d7;
padding: 5px 10px;
margin:0;
2013-11-02 01:47:53 +08:00
}
}
#chat-options-bar {
width:100%;
position:relative;
border-bottom:1px solid #ccc;
button {
2013-11-02 01:47:53 +08:00
.rounded(0);
2013-11-01 22:58:09 +08:00
}
.btn {
padding:0 5px;
2013-11-02 01:47:53 +08:00
font-size:12px;
line-height:22px;
border-top:0;
border-bottom:0;
border-left:0;
border-right:1px solid #ccc;
display:block;
float:left;
}
}
2013-11-01 22:58:09 +08:00
#chat-input-wrapper {
2013-11-02 01:47:53 +08:00
position:absolute;
bottom:0;
}
2013-11-02 01:47:53 +08:00
#chat-user-list {
padding:5px;
li {
cursor: pointer;
2013-11-02 01:47:53 +08:00
}
}
.chat-message-wrapper {
margin-bottom: 10px;
2013-11-02 01:47:53 +08:00
}
.chat-message {
font-size: 12px;
line-height: 14px;
2013-11-02 01:47:53 +08:00
}
.chat-username {
font-weight:bold;
color:#333;
}
#chat-messages {
clear: both;
overflow-y: auto;
overflow: auto;
overflow-x: hidden;
position: relative;
padding: 10px;
word-break: break-all;
}