This stylesheet will highlight mentions and comments in the notification stream in Jira and on the dedicated Atlassian notification page
Atlassian.com Notification Highlight by olee
Details
Authorolee
LicenseNo License
Categoryatlassian, jira
Created
Updated
Size750 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Atlassian.com Notification Highlight
@namespace github.com/openstyles/stylus
@version 1.0.0
@description This stylesheet will highlight mentions and comments in the notification stream in Jira and on the dedicated Atlassian notification page
@author Björn Zeutzheim
==/UserStyle== */
@-moz-document domain("atlassian.com"), domain("atlassian.net") {
a[data-testid="notification-item-main-action"] + * {
position: relative;
}
a[data-testid="notification-item-main-action"][aria-label*="mentioned"] {
background: rgba(255,0,0,0.24);
}
a[data-testid="notification-item-main-action"][aria-label*="commented"] {
background: rgba(255,0,255,0.24);
}
}