ComunicWeb/assets/css/components/conversations/windows.css
2017-06-21 18:29:14 +02:00

59 lines
1.1 KiB
CSS

/**
* Conversations windows
*
* @author Pierre HUBERT
*/
#conversationsElem .box {
width: 250px;
height: 350px;
max-width: 100%;
/*display: inline-block;*/
display: inline-table;
margin-left: 5px;
text-align: justify;
margin-bottom: 0px;
}
/**
* Conversations create message form
*/
#conversationsElem .create-message-form .btn {
padding-left: 6px;
padding-right:6px;
}
#conversationsElem .create-message-form .btn.btn-add-image {
background: none;
color: #808080;
}
#conversationsElem .create-message-form .btn.btn-add-image:hover{
color: black;
}
/**
* 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%;
background: #FFFFFF;
overflow: auto;
transition: transform .5s cubic-bezier(.22,.61,.36,1);
padding: 10px;
}
#conversationsElem .conversation-settings-pane.open {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}