From c9e01390a773a2225c653444daad9022763f8c0d Mon Sep 17 00:00:00 2001 From: lilia Date: Wed, 28 Oct 2015 13:01:36 -0700 Subject: [PATCH] Use check/double check for sent/delivered // FREEBIE --- background.html | 3 ++- stylesheets/_conversation.scss | 20 ++++++++++++++------ stylesheets/manifest.css | 19 ++++++++++++------- 3 files changed, 28 insertions(+), 14 deletions(-) diff --git a/background.html b/background.html index 799c6af3..0fc48de2 100644 --- a/background.html +++ b/background.html @@ -78,7 +78,8 @@

{{ message }}

{{ timestamp }} - + +
diff --git a/stylesheets/_conversation.scss b/stylesheets/_conversation.scss index cea123a5..ee56482e 100644 --- a/stylesheets/_conversation.scss +++ b/stylesheets/_conversation.scss @@ -189,8 +189,20 @@ margin-right: 3px; } -.entry.delivered .checkmark { - display: inline; +.entry.sent .checkmark { + display: inline-block; + width: 18px; + height: 1em; + background: url('/images/check-white.png'); +} +.entry.delivered { + .checkmark { display: none; } + .double-checkmark { + display: inline-block; + background: url('/images/double-check-white.png'); + width: 18px; + height: 1em; + } } .message-list { @@ -255,11 +267,7 @@ } } - .outgoing .bubble { - opacity: 0.7; - } .outgoing.sent .bubble { - opacity: 1.0; } .error.bubble { diff --git a/stylesheets/manifest.css b/stylesheets/manifest.css index 667c50c1..06e906e8 100644 --- a/stylesheets/manifest.css +++ b/stylesheets/manifest.css @@ -673,8 +673,19 @@ input.search { font-size: smaller; margin-right: 3px; } +.entry.sent .checkmark { + display: inline-block; + width: 18px; + height: 1em; + background: url("/images/check-white.png"); } + .entry.delivered .checkmark { - display: inline; } + display: none; } +.entry.delivered .double-checkmark { + display: inline-block; + background: url("/images/double-check-white.png"); + width: 18px; + height: 1em; } .message-list { margin: 0; @@ -723,12 +734,6 @@ input.search { .message-detail .bubble p, .message-list .bubble p { margin: 0; } - .message-detail .outgoing .bubble, - .message-list .outgoing .bubble { - opacity: 0.7; } - .message-detail .outgoing.sent .bubble, - .message-list .outgoing.sent .bubble { - opacity: 1.0; } .message-detail .error.bubble, .message-list .error.bubble { cursor: pointer;