From e4fa9e7dddb4f7edf1f9dca39404e4a598b0da66 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Mon, 4 Feb 2013 15:31:34 -0500 Subject: [PATCH] Adjust color of code blocks and blockquote line in selected message Make sure they still stand out against the grey background. It's less clear that we should do this for private messages as well, but it seems fine for now. Fixes #658. (imported from commit 4c750208b5f2697e91c1c4fa7365d2744260c6f2) --- zephyr/static/styles/zephyr.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/zephyr/static/styles/zephyr.css b/zephyr/static/styles/zephyr.css index 15f6d7603a..334956fed7 100644 --- a/zephyr/static/styles/zephyr.css +++ b/zephyr/static/styles/zephyr.css @@ -125,6 +125,21 @@ td.pointer { background-color: #08c; } +/* Adjust certain message elements so they still + stand out against the grey background */ + +.selected_message pre { + background-color: white; +} + +.selected_message code { + background-color: white; +} + +.selected_message blockquote { + border-left-color: #BBB; +} + .message_picture { vertical-align: top; text-align: right;