summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal/web/bug_modal.css
diff options
context:
space:
mode:
authorKohei Yoshino <kohei.yoshino@gmail.com>2018-06-26 22:50:45 +0200
committerDylan William Hardison <dylan@hardison.net>2018-06-26 22:50:45 +0200
commita685e15218fbe7d26015a579c96caf7de783732d (patch)
treeac5f9157392181648ef995c182efbee3c0d2fe28 /extensions/BugModal/web/bug_modal.css
parent02e46829b2ddd0f6109c7d81cf40c1865b01a122 (diff)
downloadbugzilla-a685e15218fbe7d26015a579c96caf7de783732d.tar.gz
bugzilla-a685e15218fbe7d26015a579c96caf7de783732d.tar.xz
Bug 1469023 - Show "new changes since (datetime)" indicator that links to unread changes/comments
Diffstat (limited to 'extensions/BugModal/web/bug_modal.css')
-rw-r--r--extensions/BugModal/web/bug_modal.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/extensions/BugModal/web/bug_modal.css b/extensions/BugModal/web/bug_modal.css
index eeba78d74..9a3978b14 100644
--- a/extensions/BugModal/web/bug_modal.css
+++ b/extensions/BugModal/web/bug_modal.css
@@ -532,6 +532,43 @@ td.flag-requestee {
text-align: right;
}
+.new-changes-link {
+ margin: 8px 0;
+ border-radius: 4px;
+ padding: 4px;
+ font-size: 12px;
+ text-align: center;
+ color: #FFF;
+ background: #277AC1;
+ cursor: pointer;
+}
+
+.new-changes-separator {
+ position: relative;
+ margin: 16px -8px;
+ height: 0;
+ border-top: 1px solid #C00;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+}
+
+.new-changes-separator span {
+ display: inline-block;
+ position: absolute;
+ top: -10px;
+ right: 16px;
+ border: 1px solid #CCC;
+ border-radius: 4px;
+ padding: 0 4px;
+ height: 16px;
+ font-size: 10px;
+ line-height: 16px;
+ text-transform: uppercase;
+ color: #C00;
+ background-color: #FFF;
+}
+
.change-set {
clear: both;
-webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);