mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
80 lines
1.5 KiB
CSS
80 lines
1.5 KiB
CSS
/**
|
|
* Conversation pane stylesheet
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
.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;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.big-box-conversation .direct-chat-info span {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.big-box-conversation .direct-chat-msg {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.big-box-conversation .direct-chat-text {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
max-width: 150px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.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: var(--primary-blue);
|
|
}
|
|
|
|
.big-box-conversation .direct-chat-msg.curruser .direct-chat-text {
|
|
background: var(--primary-blue);
|
|
border-color: var(--primary-blue);
|
|
color: white;
|
|
}
|
|
|
|
.big-box-conversation .btn-primary {
|
|
border-color: var(--primary-blue);
|
|
}
|
|
|
|
.big-box-conversation .btn-primary:hover {
|
|
background-color: var(--primary-blue);
|
|
border-color: var(--primary-blue);
|
|
}
|
|
|
|
|
|
|
|
.big-box-conversation .direct-chat-text .message-img {
|
|
max-width: 100%;
|
|
max-height: 200px;
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
|
|
.big-box-conversation .direct-chat-text .a,
|
|
.big-box-conversation .direct-chat-text a {
|
|
color: white;
|
|
}
|
|
|
|
.big-box-conversation .direct-chat-msg .srv-msg {
|
|
text-align: center;
|
|
font-style: italic;
|
|
} |