Messenger messages UI

This commit is contained in:
yflory
2018-09-11 15:19:47 +02:00
parent 40c7cdd7c8
commit 26055e5e55
2 changed files with 53 additions and 4 deletions

View File

@@ -266,6 +266,8 @@
flex: 1;
overflow-x: auto;
.cp-app-contacts-message {
display: flex;
flex-wrap: wrap;
& > div {
padding: 0 10px;
}
@@ -275,6 +277,8 @@
&> * {
margin: 0;
}
flex: 1;
min-width: 70%;
}
.cp-app-contacts-date {
display: none;
@@ -284,6 +288,20 @@
margin-top: 10px;
font-weight: bold;
background-color: rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
width: 100%;
}
.cp-app-contacts-time {
display: none;
font-size: 0.8em;
align-items: center;
color: @color;
}
&:hover {
.cp-app-contacts-time {
display: flex;
}
}
}
}