ComunicWeb/assets/css/pages/conversations/conversation.css

69 lines
1.3 KiB
CSS
Raw Normal View History

/**
* Conversation pane stylesheet
*
* @author Pierre HUBERT
*/
2020-04-13 09:18:04 +00:00
.big-box-conversation {
flex: 1;
display: flex;
flex-direction: column;
max-width: 90%;
margin: auto;
}
.big-box-conversation .box-body {
flex: 1;
display: flex;
flex-direction: column;
}
.big-box-conversation .direct-chat-messages {
flex: 1 1 auto;
height: 0px;
overflow: auto;
2020-04-13 09:37:26 +00:00
scroll-behavior: smooth;
2020-04-13 09:18:04 +00:00
}
2020-04-09 09:47:05 +00:00
.big-box-conversation .direct-chat-info span {
margin-right: 10px;
}
.big-box-conversation .direct-chat-msg {
margin-bottom: 15px;
}
2018-05-14 17:17:28 +00:00
.big-box-conversation .direct-chat-text {
display: inline-block;
margin-left: 10px;
max-width: 150px;
2018-05-16 15:56:48 +00:00
word-wrap: break-word;
2018-05-14 17:17:28 +00:00
}
2020-04-09 09:47:05 +00:00
.big-box-conversation .direct-chat-msg.curruser .direct-chat-text::after,
.big-box-conversation .direct-chat-msg.curruser .direct-chat-text::before {
border-right-color: #3c8dbc;
}
.big-box-conversation .direct-chat-msg.curruser .direct-chat-text {
background: #3c8dbc;
border-color: #3c8dbc;
color: white;
2018-05-14 18:29:44 +00:00
}
.big-box-conversation .direct-chat-text .message-img {
max-width: 100%;
max-height: 200px;
display: block;
margin: auto;
2018-05-19 09:19:39 +00:00
}
2018-07-31 11:55:58 +00:00
.big-box-conversation .direct-chat-text .a,
2018-05-19 09:19:39 +00:00
.big-box-conversation .direct-chat-text a {
color: white;
2021-03-05 16:49:51 +00:00
}
.big-box-conversation .direct-chat-msg .srv-msg {
text-align: center;
font-style: italic;
}