ComunicWeb/assets/css/components/conversations/windows.css

42 lines
843 B
CSS
Raw Normal View History

2017-06-05 08:12:38 +00:00
/**
2017-06-07 17:24:48 +00:00
* Conversations windows
2017-06-05 08:12:38 +00:00
*
* @author Pierre HUBERT
*/
2017-06-07 17:24:48 +00:00
#conversationsElem .box {
2017-06-05 08:12:38 +00:00
width: 250px;
height: 350px;
max-width: 100%;
2017-06-07 12:42:19 +00:00
/*display: inline-block;*/
display: inline-table;
2017-06-05 08:12:38 +00:00
margin-left: 5px;
text-align: justify;
margin-bottom: 0px;
2017-06-17 09:20:54 +00: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%;
background: #d2d6de;
overflow: auto;
transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
#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-05 08:12:38 +00:00
}