2017-06-05 10:12:38 +02:00
|
|
|
/**
|
2017-06-07 19:24:48 +02:00
|
|
|
* Conversations windows
|
2017-06-05 10:12:38 +02:00
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
2017-06-07 19:24:48 +02:00
|
|
|
#conversationsElem .box {
|
2017-06-05 10:12:38 +02:00
|
|
|
width: 250px;
|
|
|
|
height: 350px;
|
|
|
|
max-width: 100%;
|
2017-06-07 14:42:19 +02:00
|
|
|
/*display: inline-block;*/
|
|
|
|
display: inline-table;
|
2017-06-05 10:12:38 +02:00
|
|
|
margin-left: 5px;
|
|
|
|
text-align: justify;
|
|
|
|
margin-bottom: 0px;
|
2017-06-17 11:20:54 +02:00
|
|
|
}
|
|
|
|
|
2017-06-21 16:44:10 +02:00
|
|
|
/**
|
|
|
|
* Conversations create message form
|
|
|
|
*/
|
2017-06-22 09:34:27 +02:00
|
|
|
|
|
|
|
#conversationsElem .box-footer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-06-21 16:44:10 +02:00
|
|
|
#conversationsElem .create-message-form .btn {
|
2017-06-23 17:25:29 +02:00
|
|
|
padding-left: 8px;
|
|
|
|
padding-right:8px;
|
2017-06-21 16:44:10 +02:00
|
|
|
}
|
2017-06-17 11:20:54 +02:00
|
|
|
|
2017-06-21 18:29:14 +02:00
|
|
|
#conversationsElem .create-message-form .btn.btn-add-image {
|
|
|
|
background: none;
|
|
|
|
color: #808080;
|
|
|
|
}
|
|
|
|
|
|
|
|
#conversationsElem .create-message-form .btn.btn-add-image:hover{
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2017-06-17 11:20:54 +02:00
|
|
|
/**
|
|
|
|
* Conversation settings pane
|
|
|
|
*/
|
|
|
|
#conversationsElem .conversation-settings-pane {
|
|
|
|
-webkit-transform: translate(101%, 0);
|
|
|
|
-ms-transform: translate(101%, 0);
|
|
|
|
-o-transform: translate(101%, 0);
|
|
|
|
transform: translate(101%, 0);
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
height: 250px;
|
|
|
|
width: 100%;
|
2017-06-17 11:40:57 +02:00
|
|
|
background: #FFFFFF;
|
2017-06-17 11:20:54 +02:00
|
|
|
overflow: auto;
|
|
|
|
transition: transform .5s cubic-bezier(.22,.61,.36,1);
|
2017-06-17 11:40:57 +02:00
|
|
|
padding: 10px;
|
2017-06-17 11:20:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#conversationsElem .conversation-settings-pane.open {
|
|
|
|
-webkit-transform: translate(0, 0);
|
|
|
|
-ms-transform: translate(0, 0);
|
|
|
|
-o-transform: translate(0, 0);
|
|
|
|
transform: translate(0, 0);
|
2017-06-25 19:10:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Conversations messages
|
|
|
|
*/
|
|
|
|
#conversationsElem .conversation-msg-image {
|
|
|
|
height: 50px;
|
2017-06-26 10:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#conversationsElem .direct-chat-text .emoji {
|
|
|
|
height: 1em;
|
2017-06-26 11:16:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#conversationsElem .direct-chat-text.not-first-message::before,
|
|
|
|
#conversationsElem .direct-chat-text.not-first-message::after {
|
|
|
|
display: none;
|
2017-06-05 10:12:38 +02:00
|
|
|
}
|