Added ✓ to delivered messages

Closes #100
Closes #101
This commit is contained in:
Dave Sescleifer 2014-12-22 18:28:10 -06:00 committed by lilia
parent 8ed73d0ce5
commit 893fffdad8
3 changed files with 30 additions and 13 deletions

View file

@ -83,16 +83,3 @@ li.entry img {
padding: 5px;
border-radius: 3px;
}
.timestamp {
font-size: 0.75em;
display: block;
}
.incoming .timestamp {
color: gray;
}
.outgoing .timestamp {
color: whitesmoke;
}

View file

@ -184,6 +184,16 @@ ul.discussion {
width: 100%;
float: left;
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 {
border-radius: 16px;

View file

@ -19,6 +19,26 @@ ul.discussion {
width:100%;
float:left;
margin-bottom:10px;
.timestamp {
font-size: 0.75em;
display: block;
&:incoming {
color: gray;
}
&:outgoing {
color: whitesmoke;
}
}
&.delivered .timestamp {
&::after {
margin-left: 4px;
content: "";
}
}
}
.bubble {