xmpp.chapril.org-conversejs/sass/_muc_embedded.scss

65 lines
1.4 KiB
SCSS
Raw Normal View History

2017-01-16 22:15:07 +01:00
@import "bourbon";
@import "variables";
#converse-embedded-chat {
2017-02-03 00:16:15 +01:00
@include box-sizing(border-box);
*, *:before, *:after {
@include box-sizing(border-box);
}
2017-01-16 22:15:07 +01:00
bottom: auto;
right: auto;
position: relative;
width: 100%;
.chatroom {
width: auto;
}
.flyout {
bottom: auto;
display: block;
position: relative;
}
.chatbox {
float: none;
.box-flyout {
box-shadow: none;
}
.chat-title {
padding: 0.3em;
font-size: 110%;
}
}
.chatbox-btn {
display: none;
}
.chatroom {
.box-flyout {
min-width: auto;
width: 100%;
2017-02-03 00:16:15 +01:00
height: 90vh;
2017-01-16 22:15:07 +01:00
.chat-body {
@include calc(height, '100% - #{$chat-head-height}');
}
2017-02-03 00:16:15 +01:00
.chat-content {
height: calc(100% - #{$toolbar-height + $chat-textarea-height +2px});
}
2017-01-16 22:15:07 +01:00
.chatroom-body {
.chatroom-form-container {
height: auto;
position: relative;
}
}
.occupants {
.occupant-list {
padding-left: 0.3em;
li.occupant {
font-size: 14px;
}
}
}
}
}
}