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

284 lines
9.5 KiB
SCSS
Raw Normal View History

2017-01-16 22:15:07 +01:00
#converse-embedded-chat,
#conversejs {
2017-01-16 22:15:07 +01:00
.new-chatroom-nick {
margin: 1em auto;
}
.add-chatroom {
input[type="submit"],
input[type="button"] {
margin: 0.3em 0;
}
}
.chat-head-chatroom {
background-color: $chatroom-head-color;
.chatbox-btn {
&.button-on {
background-color: $chat-head-text-color;
color: $chatroom-head-color;
}
}
.chat-title {
color: $chatroom-color-lightest;
.chatroom-name {
color: white;
}
.chatroom-jid {
font-size: $font-size-small;
}
.chatroom-description {
color: white;
font-size: 80%;
font-style: italic;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin: 0.3em 0;
}
}
}
.chatroom {
width: $chatroom-width;
@media screen and (max-height: $mobile-landscape-height){
width: $mobile-chat-width;
}
@media screen and (max-width: $mobile-portrait-length) {
width: $mobile-chat-width;
}
.box-flyout {
min-width: $chatroom-width;
width: $chatroom-width;
@media screen and (max-height: $mobile-landscape-height) {
height: $mobile-chat-height;
width: $mobile-chat-width;
height: 100vh;
}
@media screen and (max-width: $mobile-portrait-length) {
height: $mobile-chat-height;
width: $mobile-chat-width;
height: 100vh;
}
.chatroom-body {
height: 289px;
@include border-bottom-radius($chatbox-border-radius);
@include calc(height, '100% - #{$chat-head-height}');
background-color: white;
border-top: 0;
width: 100%;
2018-01-25 12:36:13 +01:00
overflow: hidden;
.chat-info {
color: white;
line-height: normal;
}
2016-06-20 21:25:57 +02:00
.mentioned {
font-weight: bold;
}
.chat-message {
&.onload {
animation: colorchange-chatmessage-muc 1s;
-webkit-animation: colorchange-chatmessage-muc 1s;
}
.chat-msg-them {
color: $chatroom-message-them-color;
canvas {
background: $red;
}
}
.chat-msg-me {
canvas {
background: $light-blue;
}
}
2016-06-20 21:25:57 +02:00
}
.disconnect-msg {
padding: 2em 2em 0 2em;
}
.chat-area {
word-wrap: break-word;
width: 100%;
2015-11-03 17:42:04 +01:00
float: left;
min-width: $chat-width;
2018-01-25 12:36:13 +01:00
height: calc(100% - 95px);
.new-msgs-indicator {
background-color: $chatroom-head-color;
max-width: 70%;
}
.chat-content {
padding: 0.5em;
}
2015-11-03 17:42:04 +01:00
&.full {
min-width: 100%;
.new-msgs-indicator {
min-width: 100%;
}
2015-11-03 17:42:04 +01:00
}
}
2015-10-31 17:30:06 +01:00
.occupants {
2017-02-19 12:00:19 +01:00
overflow-x: hidden;
overflow-y: hidden;
2016-06-20 21:25:57 +02:00
float: right;
vertical-align: top;
background-color: white;
border-left: 1px solid $text-color;
border-bottom-right-radius: $chatbox-border-radius;
2016-06-20 21:25:57 +02:00
width: 30%;
height: 100%;
2017-02-18 20:41:44 +01:00
padding: 0.5em;
2015-10-31 17:30:06 +01:00
.occupants-heading {
2017-02-18 20:41:44 +01:00
padding: 0.3em 0;
2015-10-29 10:21:31 +01:00
font-weight: bold;
}
.chatroom-features {
bottom: 0.5em;
width: 100%;
.feature {
float: left;
margin-right: 0.5em;
padding-right: 0;
font-size: 1em;
cursor: help;
}
}
2017-03-03 15:33:11 +01:00
.awesomplete {
ul {
2017-06-18 00:42:54 +02:00
padding: 0;
li {
padding: .5em;
}
2017-03-03 15:33:11 +01:00
}
}
2017-02-18 20:41:44 +01:00
ul {
padding: 0.5em 0 0 0;
margin-bottom: 0.5em;
2015-11-03 17:42:04 +01:00
overflow-x: hidden;
overflow-y: auto;
list-style: none;
&.occupant-list {
2017-02-25 21:53:50 +01:00
overflow-y: auto;
2017-02-27 18:40:48 +01:00
@include calc(height, '100% - 220px');
2017-02-19 12:00:19 +01:00
}
&.features-list {
padding-top: 0;
}
li {
cursor: default;
display: block;
2017-02-18 20:41:44 +01:00
font-size: $font-size-small;
overflow: hidden;
2017-02-28 06:27:30 +01:00
padding: 0.2em 0.5em 0.2em 0;
text-overflow: ellipsis;
white-space: nowrap;
2017-02-18 20:41:44 +01:00
[class^="icon-"], [class*=" icon-"] {
padding-right: 0.5em;
}
&.feature {
font-size: $font-size-tiny;
}
&.occupant {
cursor: pointer;
2017-02-28 06:27:30 +01:00
.occupant-status {
display: inline-block;
margin-right: 0.5em;
width: 0.5em;
height: 0.5em;
&.occupant-online,
&.occupant-chat {
2017-02-28 08:32:00 +01:00
background-color: #1A9707;
2017-02-28 06:27:30 +01:00
}
&.occupant-dnd {
background-color: red;
}
&.occupant-away {
background-color: darkorange;
}
&.occupant-xa {
background-color: orange;
}
}
}
&.moderator {
color: $moderator-color;
}
&.visitor {
color: $visitor-color;
}
}
}
}
.chatroom-form-container {
background-color: white;
2017-07-05 11:59:55 +02:00
border-bottom-left-radius: $chatbox-border-radius;
border-bottom-right-radius: $chatbox-border-radius;
border: 0;
color: $text-color;
font-size: $font-size;
height: 289px;
width: 100%;
@include calc(height, '100% - #{$chat-head-height}');
overflow-y: auto;
position: absolute;
.validation-message {
font-size: 90%;
color: $error-color;
}
.chatroom-form {
label,
input[type=text] {
display: block;
}
}
2017-02-28 08:32:00 +01:00
input[type=button],
input[type=submit] {
margin: 0 0.5em;
}
.button-primary {
background-color: $chatroom-head-color;
}
}
}
}
2018-01-25 12:36:13 +01:00
.sendXMPPMessage {
.chat-toolbar {
background-color: $chatroom-toolbar-color;
}
.chat-textarea {
border-bottom-right-radius: 0;
}
.send-button {
background-color: $chatroom-head-color;
}
}
.room-invite {
.invited-contact {
margin: -1px 0 0 -1px;
width: 100%;
border: 1px solid #999;
}
}
}
}
2018-01-25 12:36:13 +01:00
@media screen and (max-width: 767px) {
#conversejs {
.chatbox {
.box-flyout {
.chatroom-body {
.chat-area {
height: calc(100vh - 55px);
}
}
}
}
}
}