From: Israel Madueme Date: Wed, 25 Apr 2018 12:54:10 +0000 (-0400) Subject: Bug 1373280 - Highlight private comments in new bug modal UI X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=396ac9ccd1170b42c14bc50d7706be657a4fb114;p=thirdparty%2Fbugzilla.git 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. --- 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; }