summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal
diff options
context:
space:
mode:
authorIsrael Madueme <purelogiq@gmail.com>2018-04-25 14:54:10 +0200
committerDylan William Hardison <dylan@hardison.net>2018-04-25 14:54:10 +0200
commit396ac9ccd1170b42c14bc50d7706be657a4fb114 (patch)
tree512d0b465c50f56983d9ed48bf83a453ee4181b1 /extensions/BugModal
parent50ef8fcbb13f77eeded121d32be3f1a98cd17640 (diff)
downloadbugzilla-396ac9ccd1170b42c14bc50d7706be657a4fb114.tar.gz
bugzilla-396ac9ccd1170b42c14bc50d7706be657a4fb114.tar.xz
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.
Diffstat (limited to 'extensions/BugModal')
-rw-r--r--extensions/BugModal/web/bug_modal.css5
1 files changed, 5 insertions, 0 deletions
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;
}