bigbluebutton-Github/bigbluebutton-html5/app/client/stylesheets/chat.less

166 lines
3.2 KiB
Plaintext
Raw Normal View History

@import "variables";
2014-12-12 03:35:10 +08:00
#chat {
@media @landscape {
-webkit-flex: 3 3 30%;
-moz-flex: 3 3 30%;
-ms-flex: 3 3 30%;
flex: 3 3 30%;
height: 100%;
}
2015-05-19 23:53:17 +08:00
order: 3;
2014-12-12 03:35:10 +08:00
}
.chat {
list-style: none;
margin: 0px;
padding: 0px;
2015-05-07 06:08:49 +08:00
2015-03-04 05:26:50 +08:00
@media @desktop-portrait, @landscape {
li {
margin: 0px;
padding: 15px;
word-wrap: break-word;
2015-05-07 13:33:13 +08:00
// &:nth-child(even) {
// background-color: rgb(245,245,245);
// }
2015-03-04 05:26:50 +08:00
table {
width: 100%;
}
2014-12-12 10:11:15 +08:00
}
}
2014-12-12 03:35:10 +08:00
}
#chatbody {
@media @landscape {
2015-05-07 13:33:13 +08:00
height: calc(~'100% - 70px');
}
2015-05-09 01:13:21 +08:00
overflow-y: auto;
2014-12-12 03:35:10 +08:00
padding-left: 0px;
padding-right: 0px;
@media @desktop-portrait, @mobile-portrait {
max-height: 46vw; // for longer chatbody a scrollbar appears
overflow-y: scroll;
}
2014-12-12 03:35:10 +08:00
}
.chat-input-wrapper {
padding-top:10px;
padding-left:10px;
padding-right:10px;
}
2015-03-31 06:48:25 +08:00
.disabledChat {
background-color: grey;
width: 100% !important;
}
#fontSizeTable {
2015-05-12 22:48:11 +08:00
border: 1px solid white;
2015-05-07 06:08:49 +08:00
height: 80px;
2015-05-12 22:48:11 +08:00
margin-bottom: 0px;
2015-05-07 06:08:49 +08:00
overflow: hidden;
2015-05-12 22:48:11 +08:00
/* Static font sizes are used everywhere in this control. This is the maximum amount of space required */
width: 379px;
2015-05-07 06:08:49 +08:00
.displayButtons {
height: 35px;
2015-05-12 22:48:11 +08:00
margin: 0px;
2015-05-07 06:08:49 +08:00
padding:0px;
2015-05-12 22:48:11 +08:00
text-align:center;
width:84px;
}
#displayLabel {
2015-05-07 06:08:49 +08:00
text-align: center;
2015-05-12 22:48:11 +08:00
width: 169px;
2015-03-17 21:45:49 +08:00
}
}
2014-12-12 03:35:10 +08:00
.gotUnreadMail {
background: extract(@yellow, 2) !important;
}
#newMessageInput {
display: block;
float: left;
2015-01-16 23:59:50 +08:00
width: 75%;
2014-12-12 03:35:10 +08:00
resize: none;
2015-05-07 13:33:13 +08:00
border-bottom-left-radius: 10px;
border-top-left-radius: 10px;
border-bottom-right-radius: 0px;
border-top-right-radius: 0px;
padding-top: 5px;
padding-bottom: 0px;
2015-05-07 13:33:13 +08:00
2014-12-12 03:35:10 +08:00
border:1px solid extract(@lightGrey, 3);
2015-05-07 13:33:13 +08:00
margin: 0px;
2015-03-14 04:18:50 +08:00
@media @landscape {
height: 40px; /* same height as send button */
}
2015-03-03 00:08:08 +08:00
@media @mobile-portrait {
font-size: 4vw;
height: 8vw;
2015-03-03 00:08:08 +08:00
}
@media @mobile-portrait-with-keyboard {
font-size: 4.5vh;
height: 25vh;
}
2015-03-03 00:08:08 +08:00
@media @desktop-portrait {
font-size: 25px;
2015-03-14 04:18:50 +08:00
height: 60px; /* same height as send button */
}
2014-12-12 03:35:10 +08:00
}
.panel-footer {
bottom: 0px;
position: relative;
background: extract(@white, 1);
2015-05-07 13:33:13 +08:00
padding: 0;
border-top: 1px solid extract(@lightGrey, 3);
2014-12-12 03:35:10 +08:00
}
#sendMessageButton {
2015-03-14 04:18:50 +08:00
width: 20%; /* 75% for the message input, 5% margin between the two */
2015-05-07 13:33:13 +08:00
color: extract(@black, 1);
background-color: extract(@white, 1);
font-weight: bold;
height: 50px;
margin: 0px;
border: 1px solid extract(@lightGrey, 3);
border-bottom-left-radius: 00px;
border-top-left-radius: 0px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
@media @desktop-portrait {
2015-03-14 04:18:50 +08:00
width: 20%; /* 75% for the message input, 5% margin between the two */
font-size: 30px;
height: 60px;
}
@media @mobile-portrait {
width: 15vw;
height: 8vw;
font-size: 4vw;
}
@media @mobile-portrait-with-keyboard {
width: 19vw;
height: 21vh;
font-size: 3vh;
}
@media @landscape {
2015-05-07 13:33:13 +08:00
height: 50px;
padding: 0px;
}
2014-12-12 03:35:10 +08:00
}
2014-12-12 10:11:15 +08:00
.timestamp {
text-align: right;
}
#chatbar-contents {
@media @landscape {
min-width: 140px;
}
}