From 4a9fcc38dfa97248049f585cdb4c7894ae805325 Mon Sep 17 00:00:00 2001 From: lilia Date: Wed, 21 Oct 2015 10:25:28 -0700 Subject: [PATCH] Use cursor: pointer on image attachments Because clicking on an image now opens it in a new browser window. // FREEBIE --- stylesheets/_conversation.scss | 4 ++++ stylesheets/manifest.css | 3 +++ 2 files changed, 7 insertions(+) diff --git a/stylesheets/_conversation.scss b/stylesheets/_conversation.scss index 5a3c3f392..ff272fcec 100644 --- a/stylesheets/_conversation.scss +++ b/stylesheets/_conversation.scss @@ -358,6 +358,10 @@ video { background: black; } + + img { + cursor: pointer; + } } .outgoing .avatar { diff --git a/stylesheets/manifest.css b/stylesheets/manifest.css index 0770440d6..7f038f284 100644 --- a/stylesheets/manifest.css +++ b/stylesheets/manifest.css @@ -797,6 +797,9 @@ input.search { .message-detail .attachments video, .message-list .attachments video { background: black; } + .message-detail .attachments img, + .message-list .attachments img { + cursor: pointer; } .message-detail .outgoing .avatar, .message-list .outgoing .avatar { display: none; }