message_edit.css added
Former-commit-id: f4e88b813dc1b39e50b0f997ace3768a10f406f1
This commit is contained in:
parent
72a57bfbec
commit
851050f04e
|
@ -0,0 +1,49 @@
|
|||
/* Chat containers */
|
||||
.container {
|
||||
border: 2px solid #dedede;
|
||||
background-color: #f1f1f1;
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
/* Darker chat container */
|
||||
.darker {
|
||||
border-color: #ccc;
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
/* Clear floats */
|
||||
.container::after {
|
||||
content: "";
|
||||
clear: both;
|
||||
display: table;
|
||||
}
|
||||
|
||||
/* Style images */
|
||||
.container img {
|
||||
float: left;
|
||||
max-width: 60px;
|
||||
width: 100%;
|
||||
margin-right: 20px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
/* Style the right image */
|
||||
.container img.right {
|
||||
float: right;
|
||||
margin-left: 20px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
/* Style time text */
|
||||
.time-right {
|
||||
float: right;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
/* Style time text */
|
||||
.time-left {
|
||||
float: left;
|
||||
color: #999;
|
||||
}
|
Loading…
Reference in New Issue