From 396ac9ccd1170b42c14bc50d7706be657a4fb114 Mon Sep 17 00:00:00 2001 From: Israel Madueme Date: Wed, 25 Apr 2018 08:54:10 -0400 Subject: Bug 1373280 - Highlight private comments in new bug modal UI Prior to this commit, the only indication that a comment was private was the small "Private" tag in the comment header. This commit restores the red font color to private comments and adds a small dashed border for those that have trouble seeing the color red. --- extensions/BugModal/web/bug_modal.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/extensions/BugModal/web/bug_modal.css b/extensions/BugModal/web/bug_modal.css index 65aeec86d..eeba78d74 100644 --- a/extensions/BugModal/web/bug_modal.css +++ b/extensions/BugModal/web/bug_modal.css @@ -626,6 +626,11 @@ body.platform-Win32 .comment-text, body.platform-Win64 .comment-text { width: 99% !important; } +.comment-text.bz_private { + color: darkred; + border: 1px dashed darkred; +} + .comment-tags { padding: 0 8px 2px 8px !important; } -- cgit v1.2.3-24-g4f1b