parent
8ed73d0ce5
commit
893fffdad8
3 changed files with 30 additions and 13 deletions
|
@ -83,16 +83,3 @@ li.entry img {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.timestamp {
|
|
||||||
font-size: 0.75em;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.incoming .timestamp {
|
|
||||||
color: gray;
|
|
||||||
}
|
|
||||||
|
|
||||||
.outgoing .timestamp {
|
|
||||||
color: whitesmoke;
|
|
||||||
}
|
|
||||||
|
|
|
@ -184,6 +184,16 @@ ul.discussion {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
float: left;
|
float: left;
|
||||||
margin-bottom: 10px; }
|
margin-bottom: 10px; }
|
||||||
|
.entry .timestamp {
|
||||||
|
font-size: 0.75em;
|
||||||
|
display: block; }
|
||||||
|
.entry .timestamp:incoming {
|
||||||
|
color: gray; }
|
||||||
|
.entry .timestamp:outgoing {
|
||||||
|
color: whitesmoke; }
|
||||||
|
.entry.delivered .timestamp::after {
|
||||||
|
margin-left: 4px;
|
||||||
|
content: "✓"; }
|
||||||
|
|
||||||
.bubble {
|
.bubble {
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
|
|
|
@ -19,6 +19,26 @@ ul.discussion {
|
||||||
width:100%;
|
width:100%;
|
||||||
float:left;
|
float:left;
|
||||||
margin-bottom:10px;
|
margin-bottom:10px;
|
||||||
|
|
||||||
|
.timestamp {
|
||||||
|
font-size: 0.75em;
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
&:incoming {
|
||||||
|
color: gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:outgoing {
|
||||||
|
color: whitesmoke;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.delivered .timestamp {
|
||||||
|
&::after {
|
||||||
|
margin-left: 4px;
|
||||||
|
content: "✓";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bubble {
|
.bubble {
|
||||||
|
|
Loading…
Reference in a new issue